function InstallerTestBase::installParameters

Same name and namespace in other branches
  1. 10 core/tests/Drupal/FunctionalTests/Installer/InstallerTestBase.php \Drupal\FunctionalTests\Installer\InstallerTestBase::installParameters()
  2. 11.x core/tests/Drupal/FunctionalTests/Installer/InstallerTestBase.php \Drupal\FunctionalTests\Installer\InstallerTestBase::installParameters()

Overrides FunctionalTestSetupTrait::installParameters

4 calls to InstallerTestBase::installParameters()
InstallerExistingConfigTestBase::installParameters in core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php
Returns the parameters that will be used when Simpletest installs Drupal.
InstallerSiteConfigProfileTest::installParameters in core/tests/Drupal/FunctionalTests/Installer/InstallerSiteConfigProfileTest.php
Returns the parameters that will be used when Simpletest installs Drupal.
InstallerTestBase::setUp in core/tests/Drupal/FunctionalTests/Installer/InstallerTestBase.php
InstallerTranslationMultipleLanguageTest::installParameters in core/tests/Drupal/FunctionalTests/Installer/InstallerTranslationMultipleLanguageTest.php
Returns the parameters that will be used when Simpletest installs Drupal.
3 methods override InstallerTestBase::installParameters()
InstallerExistingConfigTestBase::installParameters in core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php
Returns the parameters that will be used when Simpletest installs Drupal.
InstallerSiteConfigProfileTest::installParameters in core/tests/Drupal/FunctionalTests/Installer/InstallerSiteConfigProfileTest.php
Returns the parameters that will be used when Simpletest installs Drupal.
InstallerTranslationMultipleLanguageTest::installParameters in core/tests/Drupal/FunctionalTests/Installer/InstallerTranslationMultipleLanguageTest.php
Returns the parameters that will be used when Simpletest installs Drupal.

File

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

Class

InstallerTestBase
Base class for testing the interactive installer.

Namespace

Drupal\FunctionalTests\Installer

Code

protected function installParameters() {
    $params = parent::installParameters();
    // Set the checkbox values to FALSE so that
    // \Drupal\Tests\BrowserTestBase::translatePostValues() does not remove
    // them.
    $params['forms']['install_configure_form']['enable_update_status_module'] = FALSE;
    $params['forms']['install_configure_form']['enable_update_status_emails'] = FALSE;
    return $params;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.