You are here

protected property UserImportUpdateExportTest::$fixtures in Acquia Content Hub 8.2

Fixtures for the test.

Type: array

Overrides ImportExportTestBase::$fixtures

File

tests/src/Kernel/UserImportUpdateExportTest.php, line 14

Class

UserImportUpdateExportTest
Tests user export, update, and import.

Namespace

Drupal\Tests\acquia_contenthub\Kernel

Code

protected $fixtures = [
  [
    'cdf' => 'user/user.json',
    'expectations' => 'expectations/user/user.php',
  ],
  [
    'cdf' => 'user/user_update.json',
    'expectations' => 'expectations/user/user_update.php',
  ],
  [
    'cdf' => 'user/user_no_email.json',
    'expectations' => 'expectations/user/user_no_email.php',
  ],
  [
    'cdf' => 'user/user_no_email_update.json',
    'expectations' => 'expectations/user/user_no_email_update.php',
  ],
  [
    'cdf' => 'user/user_email_match.json',
    'expectations' => 'expectations/user/user_email_match.php',
  ],
  [
    'cdf' => 'user/user_email_match_update.json',
    'expectations' => 'expectations/user/user_email_match_update.php',
  ],
];