function RowTest::testGetMultiple

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

Tests getting multiple source and destination properties.

@covers ::getMultiple @dataProvider getMultipleDataProvider

Parameters

array $keys: An array of keys to look up.

array $expected_values: An array of expected values.

File

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

Class

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

Namespace

Drupal\Tests\migrate\Unit

Code

public function testGetMultiple(array $keys, array $expected_values) : void {
    $row = $this->createRowWithDestinationProperties($this->testGetSourceProperties, $this->testGetSourceIds, $this->testGetDestinationProperties);
    $this->assertEquals(array_combine($keys, $expected_values), $row->getMultiple($keys));
}

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