protected function MigrateBlockContentBodyFieldTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentBodyFieldTest.php \Drupal\Tests\block_content\Kernel\Migrate\MigrateBlockContentBodyFieldTest::setUp()
Overrides MigrateDrupal7TestBase::setUp
File
- core/
modules/ block_content/ tests/ src/ Kernel/ Migrate/ MigrateBlockContentBodyFieldTest.php, line 23
Class
- MigrateBlockContentBodyFieldTest
- Attaches a body field to the custom block type.
Namespace
Drupal\Tests\block_content\Kernel\MigrateCode
protected function setUp() : void {
parent::setUp();
$this
->installEntitySchema('block_content');
$this
->installConfig([
'block_content',
]);
$this
->executeMigrations([
'block_content_type',
'block_content_body_field',
]);
}