You are here

protected function AutofloatTest::setUp in AutoFloat 8

Overrides BrowserTestBase::setUp

File

tests/src/Functional/AutofloatTest.php, line 37

Class

AutofloatTest
Simple test to ensure that main page loads with module enabled.

Namespace

Drupal\Tests\autofloat\Functional

Code

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