You are here

protected function BrowserTestBase::tearDown in Zircon Profile 8

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

File

core/modules/simpletest/src/BrowserTestBase.php, line 399
Contains \Drupal\simpletest\BrowserTestBase.

Class

BrowserTestBase
Provides a test case for functional Drupal tests.

Namespace

Drupal\simpletest

Code

protected function tearDown() {
  parent::tearDown();

  // Destroy the testing kernel.
  if (isset($this->kernel)) {
    $this
      ->cleanupEnvironment();
    $this->kernel
      ->shutdown();
  }

  // Ensure that internal logged in variable is reset.
  $this->loggedInUser = FALSE;
  if ($this->mink) {
    $this->mink
      ->stopSessions();
  }
}