protected function DistributionProfileTest::setUpLanguage in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/FunctionalTests/Installer/DistributionProfileTest.php \Drupal\FunctionalTests\Installer\DistributionProfileTest::setUpLanguage()
Installer step: Select language.
Overrides InstallerTestBase::setUpLanguage
File
- core/tests/ Drupal/ FunctionalTests/ Installer/ DistributionProfileTest.php, line 50 
Class
- DistributionProfileTest
- Tests distribution profile support.
Namespace
Drupal\FunctionalTests\InstallerCode
protected function setUpLanguage() {
  // Verify that the distribution name appears.
  $this
    ->assertRaw($this->info['distribution']['name']);
  // Verify that the distribution name is used in the site title.
  $this
    ->assertTitle('Choose language | ' . $this->info['distribution']['name']);
  // Verify that the requested theme is used.
  $this
    ->assertRaw($this->info['distribution']['install']['theme']);
  // Verify that the "Choose profile" step does not appear.
  $this
    ->assertNoText('profile');
  parent::setUpLanguage();
}