function DevelElementInfoTest::setUp

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

File

tests/src/Functional/DevelElementInfoTest.php, line 31

Class

DevelElementInfoTest
Tests element info pages and links.

Namespace

Drupal\Tests\devel\Functional

Code

protected function setUp() {
    parent::setUp();
    $this->drupalPlaceBlock('system_menu_block:devel');
    $this->drupalPlaceBlock('page_title_block');
    $this->develUser = $this->drupalCreateUser([
        'access devel information',
    ]);
    $this->drupalLogin($this->develUser);
}