You are here

protected function ModerationStateBlockTest::setUp in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/content_moderation/tests/src/Functional/ModerationStateBlockTest.php \Drupal\Tests\content_moderation\Functional\ModerationStateBlockTest::setUp()

Sets the test up.

Overrides ModerationStateTestBase::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\Functional

Code

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());
}