function InstallerTestBase::setUpLanguage

Installer step: Select language.

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

File

core/modules/simpletest/src/InstallerTestBase.php, line 188

Class

InstallerTestBase
Base class for testing the interactive installer.

Namespace

Drupal\simpletest

Code

protected function setUpLanguage() {
  $edit = [
    'langcode' => $this->langcode,
  ];
  $this->drupalPostForm(NULL, $edit, $this->translations['Save and continue']);
}

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