protected function MigrateDrupal6TestBase::migrateTaxonomy in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/migrate_drupal/src/Tests/d6/MigrateDrupal6TestBase.php \Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase::migrateTaxonomy()
Executes all taxonomy migrations.
6 calls to MigrateDrupal6TestBase::migrateTaxonomy()
- MigrateTermNodeRevisionTest::setUp in core/
modules/ taxonomy/ src/ Tests/ Migrate/ d6/ MigrateTermNodeRevisionTest.php - Performs setup tasks before each individual test method is run.
- MigrateTermNodeTest::setUp in core/
modules/ taxonomy/ src/ Tests/ Migrate/ d6/ MigrateTermNodeTest.php - Performs setup tasks before each individual test method is run.
- MigrateVocabularyEntityDisplayTest::setUp in core/
modules/ taxonomy/ src/ Tests/ Migrate/ d6/ MigrateVocabularyEntityDisplayTest.php - Performs setup tasks before each individual test method is run.
- MigrateVocabularyEntityFormDisplayTest::setUp in core/
modules/ taxonomy/ src/ Tests/ Migrate/ d6/ MigrateVocabularyEntityFormDisplayTest.php - Performs setup tasks before each individual test method is run.
- MigrateVocabularyFieldInstanceTest::setUp in core/
modules/ taxonomy/ src/ Tests/ Migrate/ d6/ MigrateVocabularyFieldInstanceTest.php - Performs setup tasks before each individual test method is run.
File
- core/
modules/ migrate_drupal/ src/ Tests/ d6/ MigrateDrupal6TestBase.php, line 117 - Contains \Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase.
Class
- MigrateDrupal6TestBase
- Base class for Drupal 6 migration tests.
Namespace
Drupal\migrate_drupal\Tests\d6Code
protected function migrateTaxonomy() {
$this
->migrateContentTypes();
$this
->installEntitySchema('taxonomy_term');
$this
->executeMigrations([
'd6_taxonomy_vocabulary',
'd6_vocabulary_field',
'd6_vocabulary_field_instance',
'd6_vocabulary_entity_display',
'd6_vocabulary_entity_form_display',
'd6_taxonomy_term',
]);
}