You are here

protected function MigrateCustomBlockTest::setUp in Drupal 9

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

Overrides MigrateDrupal7TestBase::setUp

File

core/modules/block_content/tests/src/Kernel/Migrate/d7/MigrateCustomBlockTest.php, line 25

Class

MigrateCustomBlockTest
Tests migration of custom blocks.

Namespace

Drupal\Tests\block_content\Kernel\Migrate\d7

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installEntitySchema('block_content');
  $this
    ->installConfig(static::$modules);
  $this
    ->executeMigrations([
    'd7_filter_format',
    'block_content_type',
    'block_content_body_field',
    'd7_custom_block',
  ]);
}