You are here

public function FormLoadIncludeTest::testRewriteWithName in Drupal 7 to 8/9 Module Upgrader 8

File

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

Class

FormLoadIncludeTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\FormLoadInclude

Namespace

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

Code

public function testRewriteWithName() {
  $function_call = Parser::parseExpression('form_load_include($form_state, "inc", "mod_foo", "bazzle")');
  $rewritten = $this->plugin
    ->rewrite($function_call, $this->target);
  $this
    ->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
  $this
    ->assertEquals('$form_state->loadInclude("mod_foo", "inc", "bazzle")', $rewritten
    ->getText());
}