You are here

public function RowTest::testSourceIdValues in Zircon Profile 8

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

Tests the source ID.

File

core/modules/migrate/tests/src/Unit/RowTest.php, line 199
Contains \Drupal\Tests\migrate\Unit\RowTest.

Class

RowTest
@coversDefaultClass \Drupal\migrate\Row @group migrate

Namespace

Drupal\Tests\migrate\Unit

Code

public function testSourceIdValues() {
  $row = new Row($this->testValues, $this->testSourceIds);
  $this
    ->assertSame(array(
    'nid' => $this->testValues['nid'],
  ), $row
    ->getSourceIdValues());
}