You are here

protected function MigrateBlockTest::setUp in Drupal 8

Same name in this branch
  1. 8 core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php \Drupal\Tests\block\Kernel\Migrate\d6\MigrateBlockTest::setUp()
  2. 8 core/modules/block/tests/src/Kernel/Migrate/d7/MigrateBlockTest.php \Drupal\Tests\block\Kernel\Migrate\d7\MigrateBlockTest::setUp()
Same name and namespace in other branches
  1. 9 core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php \Drupal\Tests\block\Kernel\Migrate\d6\MigrateBlockTest::setUp()

Overrides MigrateDrupal6TestBase::setUp

File

core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php, line 36

Class

MigrateBlockTest
Tests migration of blocks to configuration entities.

Namespace

Drupal\Tests\block\Kernel\Migrate\d6

Code

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

  // Install the themes used for this test.
  $this->container
    ->get('theme_installer')
    ->install([
    'bartik',
    'test_theme',
  ]);
  $this
    ->installEntitySchema('block_content');
  $this
    ->installConfig([
    'block_content',
  ]);

  // Set Bartik as the default public theme.
  $config = $this
    ->config('system.theme');
  $config
    ->set('default', 'bartik');
  $config
    ->save();
  $this
    ->executeMigrations([
    'd6_filter_format',
    'block_content_type',
    'block_content_body_field',
    'd6_custom_block',
    'd6_user_role',
    'd6_block',
  ]);
  block_rebuild();
}