You are here

public function DrupalSetMessageTest::testRewriteCustomMessage in Drupal 7 to 8/9 Module Upgrader 8

Test conversion of drupal_set_message("foo", "custom").

File

tests/src/Unit/Plugin/DMU/Converter/Functions/DrupalSetMessageTest.php, line 26

Class

DrupalSetMessageTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\DrupalMessageSet

Namespace

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

Code

public function testRewriteCustomMessage() {
  $function_call = Parser::parseExpression('drupal_set_message("foo", "custom")');
  $rewritten = $this
    ->getPlugin()
    ->rewrite($function_call, $this->target);
  $this
    ->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
  $this
    ->assertEquals('\\Drupal::messenger()->addMessage("foo", "custom")', $rewritten
    ->getText());
}