You are here

protected function InstallerTest::setUpProfile in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Installer/InstallerTest.php \Drupal\system\Tests\Installer\InstallerTest::setUpProfile()

Installer step: Select installation profile.

Overrides InstallerTestBase::setUpProfile

File

core/modules/system/src/Tests/Installer/InstallerTest.php, line 53
Contains \Drupal\system\Tests\Installer\InstallerTest.

Class

InstallerTest
Tests the interactive installer.

Namespace

Drupal\system\Tests\Installer

Code

protected function setUpProfile() {

  // Assert that the expected title is present.
  $this
    ->assertEqual('Select an installation profile', $this
    ->cssSelect('main h1')[0]);
  parent::setUpProfile();
}