function DevelStateEditorTest::setUp

Same name in other branches
  1. 4.x tests/src/Functional/DevelStateEditorTest.php \Drupal\Tests\devel\Functional\DevelStateEditorTest::setUp()
  2. 5.x tests/src/Functional/DevelStateEditorTest.php \Drupal\Tests\devel\Functional\DevelStateEditorTest::setUp()

File

tests/src/Functional/DevelStateEditorTest.php, line 44

Class

DevelStateEditorTest
Tests devel state editor.

Namespace

Drupal\Tests\devel\Functional

Code

public function setUp() {
    parent::setUp();
    $this->state = $this->container
        ->get('state');
    $this->drupalPlaceBlock('page_title_block');
    $this->develUser = $this->drupalCreateUser([
        'access devel information',
    ]);
    $this->adminUser = $this->drupalCreateUser([
        'access devel information',
        'administer site configuration',
    ]);
}