You are here

public function StaticMapTest::testMapWithSourceString in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/tests/src/Unit/process/StaticMapTest.php \Drupal\Tests\migrate\Unit\process\StaticMapTest::testMapWithSourceString()

Tests map when the source is a string.

File

core/modules/migrate/tests/src/Unit/process/StaticMapTest.php, line 30
Contains \Drupal\Tests\migrate\Unit\process\StaticMapTest.

Class

StaticMapTest
Tests the static map process plugin.

Namespace

Drupal\Tests\migrate\Unit\process

Code

public function testMapWithSourceString() {
  $value = $this->plugin
    ->transform('foo', $this->migrateExecutable, $this->row, 'destinationproperty');
  $this
    ->assertSame($value, array(
    'bar' => 'baz',
  ));
}