You are here

protected function ThunderInstallerTest::setUpSite in Thunder 6.2.x

Same name and namespace in other branches
  1. 8.5 tests/src/Functional/Installer/ThunderInstallerTest.php \Drupal\Tests\thunder\Functional\Installer\ThunderInstallerTest::setUpSite()
  2. 8.2 tests/src/Functional/Installer/ThunderInstallerTest.php \Drupal\Tests\thunder\Functional\Installer\ThunderInstallerTest::setUpSite()
  3. 8.3 tests/src/Functional/Installer/ThunderInstallerTest.php \Drupal\Tests\thunder\Functional\Installer\ThunderInstallerTest::setUpSite()
  4. 8.4 tests/src/Functional/Installer/ThunderInstallerTest.php \Drupal\Tests\thunder\Functional\Installer\ThunderInstallerTest::setUpSite()
  5. 6.0.x tests/src/Functional/Installer/ThunderInstallerTest.php \Drupal\Tests\thunder\Functional\Installer\ThunderInstallerTest::setUpSite()
  6. 6.1.x tests/src/Functional/Installer/ThunderInstallerTest.php \Drupal\Tests\thunder\Functional\Installer\ThunderInstallerTest::setUpSite()

Final installer step: Configure site.

Overrides InstallerTestBase::setUpSite

1 call to ThunderInstallerTest::setUpSite()
ThunderInstallerTest::setUp in tests/src/Functional/Installer/ThunderInstallerTest.php

File

tests/src/Functional/Installer/ThunderInstallerTest.php, line 182

Class

ThunderInstallerTest
Tests the interactive installer installing the standard profile.

Namespace

Drupal\Tests\thunder\Functional\Installer

Code

protected function setUpSite() {
  $edit = $this
    ->translatePostValues($this->parameters['forms']['install_configure_form']);
  $edit['enable_update_status_module'] = NULL;
  $edit['enable_update_status_emails'] = NULL;
  $this
    ->submitForm($edit, $this->translations['Save and continue']);

  // If we've got to this point the site is installed using the regular
  // installation workflow.
}