You are here

protected function MigrateUserProfileValuesTest::setUp in Drupal 8

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

Overrides MigrateDrupal6TestBase::setUp

File

core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserProfileValuesTest.php, line 23

Class

MigrateUserProfileValuesTest
User profile values migration.

Namespace

Drupal\Tests\user\Kernel\Migrate\d6

Code

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