You are here

protected function FieldLayoutTest::setUp in Drupal 9

Same name in this branch
  1. 9 core/modules/field_layout/tests/src/Functional/FieldLayoutTest.php \Drupal\Tests\field_layout\Functional\FieldLayoutTest::setUp()
  2. 9 core/modules/field_layout/tests/src/FunctionalJavascript/FieldLayoutTest.php \Drupal\Tests\field_layout\FunctionalJavascript\FieldLayoutTest::setUp()
Same name and namespace in other branches
  1. 8 core/modules/field_layout/tests/src/Functional/FieldLayoutTest.php \Drupal\Tests\field_layout\Functional\FieldLayoutTest::setUp()

Overrides BrowserTestBase::setUp

File

core/modules/field_layout/tests/src/Functional/FieldLayoutTest.php, line 32

Class

FieldLayoutTest
Tests using field layout for entity displays.

Namespace

Drupal\Tests\field_layout\Functional

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->createContentType([
    'type' => 'article',
  ]);
  $this
    ->createNode([
    'type' => 'article',
    'title' => 'The node title',
    'body' => [
      [
        'value' => 'The node body',
      ],
    ],
  ]);
  $this
    ->drupalLogin($this
    ->drupalCreateUser([
    'access administration pages',
    'administer content types',
    'administer nodes',
    'administer node fields',
    'administer node display',
    'administer node form display',
    'view the administration theme',
  ]));
}