You are here

protected property ProfileFieldValuesTest::$expectedResults in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/user/tests/src/Unit/Migrate/d6/ProfileFieldValuesTest.php \Drupal\Tests\user\Unit\Migrate\d6\ProfileFieldValuesTest::expectedResults

Expected results after the source parsing.

Type: array

Overrides MigrateSqlSourceTestCase::$expectedResults

File

core/modules/user/tests/src/Unit/Migrate/d6/ProfileFieldValuesTest.php, line 29
Contains \Drupal\Tests\user\Unit\Migrate\d6\ProfileFieldValuesTest.

Class

ProfileFieldValuesTest
Tests the d6_profile_field_values source plugin.

Namespace

Drupal\Tests\user\Unit\Migrate\d6

Code

protected $expectedResults = array(
  array(
    'fid' => '8',
    'profile_color' => array(
      'red',
    ),
    'uid' => '2',
  ),
  array(
    'fid' => '9',
    'profile_biography' => array(
      'Lorem ipsum dolor sit amet...',
    ),
    'uid' => '2',
  ),
);