function RowTest::testDestination

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

Tests setting and getting the destination.

File

core/modules/migrate/tests/src/Unit/RowTest.php, line 281

Class

RowTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21migrate%21src%21Row.php/class/Row/9" title="Stores a row." class="local">\Drupal\migrate\Row</a> @group migrate

Namespace

Drupal\Tests\migrate\Unit

Code

public function testDestination() {
    $row = new Row($this->testValues, $this->testSourceIds);
    $this->assertEmpty($row->getDestination());
    $this->assertFalse($row->hasDestinationProperty('nid'));
    // Set a destination.
    $row->setDestinationProperty('nid', 2);
    $this->assertTrue($row->hasDestinationProperty('nid'));
    $this->assertEquals([
        'nid' => 2,
    ], $row->getDestination());
}

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