You are here

protected function MigrateUrlAliasTest::setUp in Zircon Profile 8

Same name in this branch
  1. 8 core/modules/path/src/Tests/Migrate/d6/MigrateUrlAliasTest.php \Drupal\path\Tests\Migrate\d6\MigrateUrlAliasTest::setUp()
  2. 8 core/modules/path/src/Tests/Migrate/d7/MigrateUrlAliasTest.php \Drupal\path\Tests\Migrate\d7\MigrateUrlAliasTest::setUp()
Same name and namespace in other branches
  1. 8.0 core/modules/path/src/Tests/Migrate/d6/MigrateUrlAliasTest.php \Drupal\path\Tests\Migrate\d6\MigrateUrlAliasTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides MigrateDrupal6TestBase::setUp

File

core/modules/path/src/Tests/Migrate/d6/MigrateUrlAliasTest.php, line 30
Contains \Drupal\path\Tests\Migrate\d6\MigrateUrlAliasTest.

Class

MigrateUrlAliasTest
URL alias migration.

Namespace

Drupal\path\Tests\Migrate\d6

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installSchema('system', [
    'url_alias',
  ]);
  $this
    ->executeMigration('d6_url_alias');
}