You are here

protected function StandardInstallerTest::setUpSite in Zircon Profile 8

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

Final installer step: Configure site.

Overrides InstallerTestBase::setUpSite

File

core/modules/system/src/Tests/Installer/StandardInstallerTest.php, line 36
Contains \Drupal\system\Tests\Installer\StandardInstallerTest.

Class

StandardInstallerTest
Tests the interactive installer installing the standard profile.

Namespace

Drupal\system\Tests\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();
}