public function UserLoadTest::testRewriteWithoutCacheReset in Drupal 7 to 8/9 Module Upgrader 8
File
- tests/
src/ Unit/ Plugin/ DMU/ Converter/ Functions/ UserLoadTest.php, line 14
Class
- UserLoadTest
- @group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\UserLoad
Namespace
Drupal\Tests\drupalmoduleupgrader\Unit\Plugin\DMU\Converter\FunctionsCode
public function testRewriteWithoutCacheReset() {
$function_call = Parser::parseExpression('user_load(30)');
$rewritten = $this->plugin
->rewrite($function_call, $this->target);
$this
->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
$this
->assertEquals('\\Drupal::entityTypeManager()->getStorage(\'user\')->load(30)', $rewritten
->getText());
}