You are here

protected function InstallerTest::setUpSite in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Installer/InstallerTest.php \Drupal\system\Tests\Installer\InstallerTest::setUpSite()

Final installer step: Configure site.

Overrides InstallerTestBase::setUpSite

File

core/modules/system/src/Tests/Installer/InstallerTest.php, line 73
Contains \Drupal\system\Tests\Installer\InstallerTest.

Class

InstallerTest
Tests the interactive installer.

Namespace

Drupal\system\Tests\Installer

Code

protected function setUpSite() {

  // Assert that the expected title is present.
  $this
    ->assertEqual('Configure site', $this
    ->cssSelect('main h1')[0]);
  parent::setUpSite();
}