You are here

protected function MigrateTaxonomyTermTranslationTest::setUp in Drupal 9

Same name in this branch
  1. 9 core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php \Drupal\Tests\content_translation\Kernel\Migrate\d6\MigrateTaxonomyTermTranslationTest::setUp()
  2. 9 core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d7\MigrateTaxonomyTermTranslationTest::setUp()
Same name and namespace in other branches
  1. 8 core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d7\MigrateTaxonomyTermTranslationTest::setUp()

Overrides MigrateDrupal7TestBase::setUp

File

core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTranslationTest.php, line 43

Class

MigrateTaxonomyTermTranslationTest
Test migration of translated taxonomy terms.

Namespace

Drupal\Tests\taxonomy\Kernel\Migrate\d7

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installEntitySchema('comment');
  $this
    ->installEntitySchema('file');
  $this
    ->installEntitySchema('taxonomy_term');
  $this
    ->migrateFields();
  $this
    ->executeMigrations([
    'language',
    'd7_language_content_taxonomy_vocabulary_settings',
    'd7_taxonomy_vocabulary',
    'd7_taxonomy_term',
    'd7_entity_translation_settings',
    'd7_taxonomy_term_entity_translation',
    'd7_taxonomy_term_localized_translation',
    'd7_taxonomy_term_translation',
  ]);
}