function SingleVisibleProfileTest::testInstalled
Confirms that the installation succeeded.
File
- 
              core/tests/ Drupal/ FunctionalTests/ Installer/ SingleVisibleProfileTest.php, line 58 
Class
- SingleVisibleProfileTest
- Tests distribution profile support.
Namespace
Drupal\FunctionalTests\InstallerCode
public function testInstalled() {
  $this->assertSession()
    ->addressEquals('user/1');
  $this->assertSession()
    ->statusCodeEquals(200);
  // Confirm that we are logged-in after installation.
  $this->assertSession()
    ->pageTextContains($this->rootUser
    ->getAccountName());
  // Confirm that the minimal profile was installed.
  $this->assertEquals('minimal', \Drupal::installProfile());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
