public function InstallerTest::testInstaller

Ensures that the user page is available after every test installation.

File

drupal/core/modules/system/lib/Drupal/system/Tests/InstallerTest.php, line 151
Contains \Drupal\system\Tests\InstallerTest.

Class

InstallerTest
Allows testing of the interactive installer.

Namespace

Drupal\system\Tests

Code

public function testInstaller() {
  $this
    ->drupalGet('user');
  $this
    ->assertResponse(200);
}