You are here

protected function MigrateUserProfileValuesTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Tests/Migrate/d6/MigrateUserProfileValuesTest.php \Drupal\user\Tests\Migrate\d6\MigrateUserProfileValuesTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides MigrateDrupal6TestBase::setUp

File

core/modules/user/src/Tests/Migrate/d6/MigrateUserProfileValuesTest.php, line 23
Contains \Drupal\user\Tests\Migrate\d6\MigrateUserProfileValuesTest.

Class

MigrateUserProfileValuesTest
User profile values migration.

Namespace

Drupal\user\Tests\Migrate\d6

Code

protected function setUp() {
  parent::setUp();
  $this
    ->executeMigrations([
    'user_profile_field',
    'user_profile_field_instance',
    'user_profile_entity_display',
    'user_profile_entity_form_display',
  ]);
  $this
    ->migrateUsers(FALSE);
  $this
    ->executeMigration('d6_profile_values');
}