You are here

protected function MigrateNodeSettingStickyTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/node/src/Tests/Migrate/d6/MigrateNodeSettingStickyTest.php \Drupal\node\Tests\Migrate\d6\MigrateNodeSettingStickyTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides MigrateDrupal6TestBase::setUp

File

core/modules/node/src/Tests/Migrate/d6/MigrateNodeSettingStickyTest.php, line 23
Contains \Drupal\node\Tests\Migrate\d6\MigrateNodeSettingStickyTest.

Class

MigrateNodeSettingStickyTest
@group migrate_drupal_6

Namespace

Drupal\node\Tests\Migrate\d6

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installConfig([
    'node',
  ]);
  $this
    ->executeMigration('d6_node_type');
  $this
    ->executeMigration('d6_node_setting_sticky');
}