You are here

protected function DevelEventInfoTest::setUp in Devel 8

Same name and namespace in other branches
  1. 8.3 tests/src/Functional/DevelEventInfoTest.php \Drupal\Tests\devel\Functional\DevelEventInfoTest::setUp()
  2. 8.2 tests/src/Functional/DevelEventInfoTest.php \Drupal\Tests\devel\Functional\DevelEventInfoTest::setUp()
  3. 4.x tests/src/Functional/DevelEventInfoTest.php \Drupal\Tests\devel\Functional\DevelEventInfoTest::setUp()

Overrides BrowserTestBase::setUp

File

tests/src/Functional/DevelEventInfoTest.php, line 30

Class

DevelEventInfoTest
Tests event info pages and links.

Namespace

Drupal\Tests\devel\Functional

Code

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