You are here

protected function WebTestBase::doInstall in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/simpletest/src/WebTestBase.php \Drupal\simpletest\WebTestBase::doInstall()

Execute the non-interactive installer.

See also

install_drupal()

1 call to WebTestBase::doInstall()
WebTestBase::setUp in core/modules/simpletest/src/WebTestBase.php
Sets up a Drupal site for running functional and integration tests.

File

core/modules/simpletest/src/WebTestBase.php, line 713
Contains \Drupal\simpletest\WebTestBase.

Class

WebTestBase
Test case for typical Drupal tests.

Namespace

Drupal\simpletest

Code

protected function doInstall() {
  require_once DRUPAL_ROOT . '/core/includes/install.core.inc';
  install_drupal($this->classLoader, $this
    ->installParameters());
}