public function FormExecuteHandlersTest::testRewriteInvalidHandlerType in Drupal 7 to 8/9 Module Upgrader 8
File
- tests/
src/ Unit/ Plugin/ DMU/ Converter/ Functions/ FormExecuteHandlersTest.php, line 27
Class
- FormExecuteHandlersTest
- @group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\FormExecuteHandlers
Namespace
Drupal\Tests\drupalmoduleupgrader\Unit\Plugin\DMU\Converter\FunctionsCode
public function testRewriteInvalidHandlerType() {
$function_call = Parser::parseExpression('form_execute_handlers("blorfable", $form, $form_state)');
$rewritten = $this->plugin
->rewrite($function_call, $this->target);
$this
->assertNull($rewritten);
}