protected function ModerationStateBlockTest::setUp in Drupal 10
Same name and namespace in other branches
- 8 core/modules/content_moderation/tests/src/Functional/ModerationStateBlockTest.php \Drupal\Tests\content_moderation\Functional\ModerationStateBlockTest::setUp()
- 9 core/modules/content_moderation/tests/src/Functional/ModerationStateBlockTest.php \Drupal\Tests\content_moderation\Functional\ModerationStateBlockTest::setUp()
File
- core/
modules/ content_moderation/ tests/ src/ Functional/ ModerationStateBlockTest.php, line 23
Class
- ModerationStateBlockTest
- Tests general content moderation workflow for blocks.
Namespace
Drupal\Tests\content_moderation\FunctionalCode
protected function setUp() : void {
parent::setUp();
// Create the "basic" block type.
$bundle = BlockContentType::create([
'id' => 'basic',
'label' => 'basic',
'revision' => FALSE,
]);
$bundle
->save();
// Add the body field to it.
block_content_add_body_field($bundle
->id());
}