You are here

protected function ClaroLayoutBuilderTest::setUp in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/FunctionalTests/Theme/ClaroLayoutBuilderTest.php \Drupal\FunctionalTests\Theme\ClaroLayoutBuilderTest::setUp()
  2. 10 core/tests/Drupal/FunctionalTests/Theme/ClaroLayoutBuilderTest.php \Drupal\FunctionalTests\Theme\ClaroLayoutBuilderTest::setUp()

Overrides BrowserTestBase::setUp

File

core/tests/Drupal/FunctionalTests/Theme/ClaroLayoutBuilderTest.php, line 36

Class

ClaroLayoutBuilderTest
Tests the layout builder with the Claro theme.

Namespace

Drupal\FunctionalTests\Theme

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->drupalPlaceBlock('local_tasks_block', [
    'region' => 'header',
  ]);

  // Create two nodes.
  $this
    ->createContentType([
    'type' => 'bundle_with_section_field',
    'name' => 'Bundle with section field',
  ]);
  $this
    ->createNode([
    'type' => 'bundle_with_section_field',
    'title' => 'The first node title',
    'body' => [
      [
        'value' => 'The first node body',
      ],
    ],
  ]);
  $this
    ->createNode([
    'type' => 'bundle_with_section_field',
    'title' => 'The second node title',
    'body' => [
      [
        'value' => 'The second node body',
      ],
    ],
  ]);
}