You are here

protected function TestingProfileInstallTest::installParameters in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/FunctionalTests/Installer/TestingProfileInstallTest.php \Drupal\FunctionalTests\Installer\TestingProfileInstallTest::installParameters()

Returns the parameters that will be used when Simpletest installs Drupal.

Return value

array Array of parameters for use in install_drupal().

Overrides FunctionalTestSetupTrait::installParameters

See also

install_drupal()

install_state_defaults()

File

core/tests/Drupal/FunctionalTests/Installer/TestingProfileInstallTest.php, line 34

Class

TestingProfileInstallTest
Tests installing the Testing profile with update notifications on.

Namespace

Drupal\FunctionalTests\Installer

Code

protected function installParameters() {
  $params = parent::installParameters();
  $params['forms']['install_configure_form']['enable_update_status_module'] = TRUE;
  return $params;
}