public function EntityGetInfoTest::testRewriteEntityType in Drupal 7 to 8/9 Module Upgrader 8
File
- tests/
src/ Unit/ Plugin/ DMU/ Converter/ Functions/ EntityGetInfoTest.php, line 20
Class
- EntityGetInfoTest
- @group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\EntityGetInfo
Namespace
Drupal\Tests\drupalmoduleupgrader\Unit\Plugin\DMU\Converter\FunctionsCode
public function testRewriteEntityType() {
$function_call = Parser::parseExpression('entity_get_info("node")');
$rewritten = $this->plugin
->rewrite($function_call, $this->target);
$this
->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
$this
->assertEquals('\\Drupal::entityTypeManager()->getDefinition("node")', $rewritten
->getText());
}