function GetTest::testTransformSourceStringAt

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/process/GetTest.php \Drupal\Tests\migrate\Unit\process\GetTest::testTransformSourceStringAt()
  2. 8.9.x core/modules/migrate/tests/src/Unit/process/GetTest.php \Drupal\Tests\migrate\Unit\process\GetTest::testTransformSourceStringAt()
  3. 10 core/modules/migrate/tests/src/Unit/process/GetTest.php \Drupal\Tests\migrate\Unit\process\GetTest::testTransformSourceStringAt()

Tests the Get plugin when source is a string pointing to destination.

File

core/modules/migrate/tests/src/Unit/process/GetTest.php, line 50

Class

GetTest
Tests the get process plugin.

Namespace

Drupal\Tests\migrate\Unit\process

Code

public function testTransformSourceStringAt() : void {
    $this->row
        ->expects($this->once())
        ->method('get')
        ->with('@@test')
        ->willReturn('source_value');
    $this->plugin = new Get([
        'source' => '@@test',
    ], '', []);
    $value = $this->plugin
        ->transform(NULL, $this->migrateExecutable, $this->row, 'destination_property');
    $this->assertSame('source_value', $value);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.