You are here

protected property RowTest::$testGetDestinationProperties in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/RowTest.php \Drupal\Tests\migrate\Unit\RowTest::testGetDestinationProperties

Test destination properties for testing get and getMultiple.

Type: array

File

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

Class

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

Namespace

Drupal\Tests\migrate\Unit

Code

protected $testGetDestinationProperties = [
  'destination_key_1' => 'destination_value_1',
  'destination_key_2' => 'destination_value_2',
  '@destination_key_3' => 'destination_value_3',
  'shared_key_1' => 'destination_shared_value_1',
  '@shared_key_2' => 'destination_shared_value_2',
  '@@@@shared_key_3' => 'destination_shared_value_3',
];