function MigrateUrlAliasTest::setUp

Overrides MigrateDrupal6TestBase::setUp

File

core/modules/path/tests/src/Kernel/Migrate/d6/MigrateUrlAliasTest.php, line 36

Class

MigrateUrlAliasTest
URL alias migration.

Namespace

Drupal\Tests\path\Kernel\Migrate\d6

Code

protected function setUp() : void {
  parent::setUp();
  $this->installEntitySchema('node');
  $this->installEntitySchema('path_alias');
  $this->installConfig([
    'node',
  ]);
  $this->installSchema('node', [
    'node_access',
  ]);
  $this->migrateUsers(FALSE);
  $this->migrateFields();
  $this->executeMigrations([
    'language',
    'd6_node_settings',
  ]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.