You are here

protected function MigrateColorTest::setUp in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/color/tests/src/Kernel/Migrate/d7/MigrateColorTest.php \Drupal\Tests\color\Kernel\Migrate\d7\MigrateColorTest::setUp()

Overrides MigrateDrupal7TestBase::setUp

File

core/modules/color/tests/src/Kernel/Migrate/d7/MigrateColorTest.php, line 22

Class

MigrateColorTest
Tests migration of Color variables to configuration.

Namespace

Drupal\Tests\color\Kernel\Migrate\d7

Code

protected function setUp() : void {
  parent::setUp();

  // Install the themes used for this test.
  $this->container
    ->get('theme_installer')
    ->install([
    'bartik',
  ]);
  $this
    ->executeMigration('d7_color');
}