You are here

protected function LogPageTest::setUp in Automatic Updates 8

Overrides BrowserTestBase::setUp

File

tests/src/Functional/LogPageTest.php, line 38

Class

LogPageTest
Tests access permission to log page.

Namespace

Drupal\Tests\automatic_updates\Functional

Code

protected function setUp() {
  parent::setUp();
  $this->user = $this
    ->drupalCreateUser([
    'access administration pages',
    'administer site configuration',
    'administer software updates',
  ]);
  $this
    ->drupalLogin($this->user);
}