You are here

public function EntityCreateTest::testRewrite in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/Plugin/DMU/Converter/Functions/EntityCreateTest.php, line 13

Class

EntityCreateTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\EntityCreate

Namespace

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

Code

public function testRewrite() {
  $function_call = Parser::parseExpression('entity_create("node", $node_values)');
  $rewritten = $this->plugin
    ->rewrite($function_call, $this->target);
  $this
    ->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
  $this
    ->assertEquals('\\Drupal::entityTypeManager()->getStorage("node")->create($node_values)', $rewritten
    ->getText());
}