You are here

protected function InstallerTestBase::setUpSettings in Drupal 8

Same name in this branch
  1. 8 core/modules/simpletest/src/InstallerTestBase.php \Drupal\simpletest\InstallerTestBase::setUpSettings()
  2. 8 core/tests/Drupal/FunctionalTests/Installer/InstallerTestBase.php \Drupal\FunctionalTests\Installer\InstallerTestBase::setUpSettings()
Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalTests/Installer/InstallerTestBase.php \Drupal\FunctionalTests\Installer\InstallerTestBase::setUpSettings()
  2. 10 core/tests/Drupal/FunctionalTests/Installer/InstallerTestBase.php \Drupal\FunctionalTests\Installer\InstallerTestBase::setUpSettings()

Installer step: Configure settings.

9 calls to InstallerTestBase::setUpSettings()
DistributionProfileTranslationQueryTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationQueryTest.php
Installer step: Configure settings.
DistributionProfileTranslationTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationTest.php
Installer step: Configure settings.
InstallerDatabaseErrorMessagesTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/InstallerDatabaseErrorMessagesTest.php
Installer step: Configure settings.
InstallerExistingConfigSyncDriectoryProfileMismatchTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigSyncDriectoryProfileMismatchTest.php
Installer step: Configure settings.
InstallerExistingConfigTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTest.php
Installer step: Configure settings.

... See full list

19 methods override InstallerTestBase::setUpSettings()
DistributionProfileExistingSettingsTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/DistributionProfileExistingSettingsTest.php
Installer step: Configure settings.
DistributionProfileTranslationQueryTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationQueryTest.php
Installer step: Configure settings.
DistributionProfileTranslationTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTranslationTest.php
Installer step: Configure settings.
InstallerConfigDirectorySetNoDirectoryErrorTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/InstallerConfigDirectorySetNoDirectoryErrorTest.php
Installer step: Configure settings.
InstallerDatabaseErrorMessagesTest::setUpSettings in core/tests/Drupal/FunctionalTests/Installer/InstallerDatabaseErrorMessagesTest.php
Installer step: Configure settings.

... See full list

File

core/tests/Drupal/FunctionalTests/Installer/InstallerTestBase.php, line 237

Class

InstallerTestBase
Base class for testing the interactive installer.

Namespace

Drupal\FunctionalTests\Installer

Code

protected function setUpSettings() {
  $edit = $this
    ->translatePostValues($this->parameters['forms']['install_settings_form']);
  $this
    ->drupalPostForm(NULL, $edit, $this->translations['Save and continue']);
}