protected function MigrateVocabularyEntityDisplayTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d6\MigrateVocabularyEntityDisplayTest::setUp()
Overrides MigrateDrupal6TestBase::setUp
File
- core/
modules/ taxonomy/ tests/ src/ Kernel/ Migrate/ d6/ MigrateVocabularyEntityDisplayTest.php, line 23
Class
- MigrateVocabularyEntityDisplayTest
- Vocabulary entity display migration.
Namespace
Drupal\Tests\taxonomy\Kernel\Migrate\d6Code
protected function setUp() : void {
parent::setUp();
// Execute Dependency Migrations.
$this
->migrateContentTypes();
$this
->installEntitySchema('taxonomy_term');
$this
->executeMigrations([
'd6_node_type',
'd6_taxonomy_vocabulary',
'd6_vocabulary_field',
'd6_vocabulary_field_instance',
]);
}