function MigrateBlockTest::setUp

Overrides MigrateDrupal6TestBase::setUp

File

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

Class

MigrateBlockTest
Tests migration of blocks to configuration entities.

Namespace

Drupal\Tests\block\Kernel\Migrate\d6

Code

protected function setUp() : void {
  parent::setUp();
  // Install the themes used for this test.
  $this->installEntitySchema('block_content');
  $this->container
    ->get('theme_installer')
    ->install([
    'olivero',
    'test_theme',
  ]);
  $this->installConfig([
    'block_content',
  ]);
  // Set Olivero as the default public theme.
  $config = $this->config('system.theme');
  $config->set('default', 'olivero');
  $config->save();
  $this->executeMigrations([
    'd6_filter_format',
    'block_content_type',
    'block_content_body_field',
    'd6_custom_block',
    'd6_user_role',
    'd6_block',
  ]);
  block_rebuild();
}

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