You are here

public function DrupalMapAssocTest::testRewrite in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/Plugin/DMU/Converter/Functions/DrupalMapAssocTest.php, line 13

Class

DrupalMapAssocTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\DrupalMapAssoc

Namespace

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

Code

public function testRewrite() {
  $function_call = Parser::parseExpression('drupal_map_assoc(array(0, 1, 2, 3))');
  $rewritten = $this->plugin
    ->rewrite($function_call, $this->target);
  $this
    ->assertInstanceOf('\\Pharborist\\Functions\\FunctionCallNode', $rewritten);
  $this
    ->assertSame($rewritten, $function_call);
  $this
    ->assertEquals('array_combine(array(0, 1, 2, 3), array(0, 1, 2, 3))', $rewritten
    ->getText());
}