You are here

protected function FieldLayoutTest::setUp in Drupal 8

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

Overrides BrowserTestBase::setUp

File

core/modules/field_layout/tests/src/FunctionalJavascript/FieldLayoutTest.php, line 33

Class

FieldLayoutTest
Tests using field layout for entity displays.

Namespace

Drupal\Tests\field_layout\FunctionalJavascript

Code

protected function setUp() {
  parent::setUp();
  $entity = EntityTest::create([
    'name' => 'The name for this entity',
    'field_test_text' => [
      [
        'value' => 'The field test text value',
      ],
    ],
  ]);
  $entity
    ->save();
  $this
    ->drupalLogin($this
    ->drupalCreateUser([
    'access administration pages',
    'view test entity',
    'administer entity_test content',
    'administer entity_test fields',
    'administer entity_test display',
    'administer entity_test form display',
    'view the administration theme',
  ]));
}