You are here

public function CToolsGetPluginsTest::testRewriteInvalidFunctionCall in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/Plugin/DMU/Converter/Functions/CToolsGetPluginsTest.php, line 36

Class

CToolsGetPluginsTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\CToolsGetPlugins

Namespace

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

Code

public function testRewriteInvalidFunctionCall() {
  $function_call = Parser::parseExpression('ctools_get_plugins($module_name, "foobaz")');
  $this
    ->assertNull($this->plugin
    ->rewrite($function_call, $this->target));
}