You are here

protected function SimpletestUiTest::setUp in Drupal 8

Overrides BrowserTestBase::setUp

File

core/modules/simpletest/tests/src/Functional/SimpletestUiTest.php, line 27

Class

SimpletestUiTest
Test various aspects of testing through the UI form.

Namespace

Drupal\Tests\simpletest\Functional

Code

protected function setUp() {
  parent::setUp();
  $this
    ->drupalLogin($this
    ->createUser([
    'administer unit tests',
  ]));
}