protected function EntityDisplayTest::setUp in Drupal 8
Same name in this branch
- 8 core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php \Drupal\Tests\field_ui\Functional\EntityDisplayTest::setUp()
- 8 core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php \Drupal\Tests\field_ui\FunctionalJavascript\EntityDisplayTest::setUp()
- 8 core/modules/field_ui/tests/src/Kernel/EntityDisplayTest.php \Drupal\Tests\field_ui\Kernel\EntityDisplayTest::setUp()
Same name and namespace in other branches
- 9 core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php \Drupal\Tests\field_ui\FunctionalJavascript\EntityDisplayTest::setUp()
Overrides BrowserTestBase::setUp
1 call to EntityDisplayTest::setUp()
- ClaroEntityDisplayTest::setUp in core/
tests/ Drupal/ FunctionalJavascriptTests/ Theme/ ClaroEntityDisplayTest.php
1 method overrides EntityDisplayTest::setUp()
- ClaroEntityDisplayTest::setUp in core/
tests/ Drupal/ FunctionalJavascriptTests/ Theme/ ClaroEntityDisplayTest.php
File
- core/
modules/ field_ui/ tests/ src/ FunctionalJavascript/ EntityDisplayTest.php, line 28
Class
- EntityDisplayTest
- Tests the UI for entity displays.
Namespace
Drupal\Tests\field_ui\FunctionalJavascriptCode
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',
]));
}