You are here

protected function StandardInstallerTest::setUpSite in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php \Drupal\FunctionalTests\Installer\StandardInstallerTest::setUpSite()
  2. 10 core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php \Drupal\FunctionalTests\Installer\StandardInstallerTest::setUpSite()

Final installer step: Configure site.

Overrides InstallerTestBase::setUpSite

File

core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php, line 28

Class

StandardInstallerTest
Tests the interactive installer installing the standard profile.

Namespace

Drupal\FunctionalTests\Installer

Code

protected function setUpSite() {

  // Test that the correct theme is being used.
  $this
    ->assertNoRaw('bartik');
  $this
    ->assertRaw('themes/seven/css/theme/install-page.css');
  parent::setUpSite();
}