protected function StandardInstallerTest::setUpSite in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/FunctionalTests/Installer/StandardInstallerTest.php \Drupal\FunctionalTests\Installer\StandardInstallerTest::setUpSite()
- 9 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 29
Class
- StandardInstallerTest
- Tests the interactive installer installing the standard profile.
Namespace
Drupal\FunctionalTests\InstallerCode
protected function setUpSite() {
// Test that the correct theme is being used.
$this
->assertSession()
->responseNotContains('olivero');
$this
->assertSession()
->responseContains('css/theme/install-page.css');
parent::setUpSite();
}