You are here

protected function RiddlerTestCase::setUp in Captcha Riddler 8

Overrides BrowserTestBase::setUp

File

tests/src/Functional/RiddlerTestCase.php, line 42

Class

RiddlerTestCase
Tests Riddler main test case sensitivity.

Namespace

Drupal\Tests\riddler\Functional

Code

protected function setUp() {
  parent::setUp();
  $this->adminUser = $this
    ->drupalCreateUser([
    'administer CAPTCHA settings',
  ]);
  $this
    ->drupalLogin($this->adminUser);
}