You are here

protected function MigrateDrupal6TestBase::migrateContentTypes in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate_drupal/src/Tests/d6/MigrateDrupal6TestBase.php \Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase::migrateContentTypes()

Migrates node types.

5 calls to MigrateDrupal6TestBase::migrateContentTypes()
MigrateCommentVariableDisplayBase::setUp in core/modules/comment/src/Tests/Migrate/d6/MigrateCommentVariableDisplayBase.php
Performs setup tasks before each individual test method is run.
MigrateCommentVariableFieldTest::setUp in core/modules/comment/src/Tests/Migrate/d6/MigrateCommentVariableFieldTest.php
Performs setup tasks before each individual test method is run.
MigrateCommentVariableInstanceTest::setUp in core/modules/comment/src/Tests/Migrate/d6/MigrateCommentVariableInstanceTest.php
Performs setup tasks before each individual test method is run.
MigrateDrupal6TestBase::migrateFields in core/modules/migrate_drupal/src/Tests/d6/MigrateDrupal6TestBase.php
Executes all field migrations.
MigrateDrupal6TestBase::migrateTaxonomy in core/modules/migrate_drupal/src/Tests/d6/MigrateDrupal6TestBase.php
Executes all taxonomy migrations.

File

core/modules/migrate_drupal/src/Tests/d6/MigrateDrupal6TestBase.php, line 75
Contains \Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase.

Class

MigrateDrupal6TestBase
Base class for Drupal 6 migration tests.

Namespace

Drupal\migrate_drupal\Tests\d6

Code

protected function migrateContentTypes() {
  $this
    ->installConfig([
    'node',
  ]);
  $this
    ->executeMigration('d6_node_type');
}