You are here

public function FieldInfoWidgetTypesTest::testRewriteFieldType in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/Plugin/DMU/Converter/Functions/FieldInfoWidgetTypesTest.php, line 20

Class

FieldInfoWidgetTypesTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\FieldInfoWidgetTypes

Namespace

Drupal\Tests\drupalmoduleupgrader\Unit\Plugin\DMU\Converter\Functions

Code

public function testRewriteFieldType() {
  $function_call = Parser::parseExpression('field_info_widget_types("text_textfield")');
  $rewritten = $this->plugin
    ->rewrite($function_call, $this->target);
  $this
    ->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
  $this
    ->assertEquals('\\Drupal::service(\'plugin.manager.field.widget\')->getDefinition("text_textfield")', $rewritten
    ->getText());
}