function BrowserTestBase::tearDown

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/BrowserTestBase.php \Drupal\Tests\BrowserTestBase::tearDown()
  2. 10 core/tests/Drupal/Tests/BrowserTestBase.php \Drupal\Tests\BrowserTestBase::tearDown()
  3. 8.9.x core/tests/Drupal/Tests/BrowserTestBase.php \Drupal\Tests\BrowserTestBase::tearDown()

File

core/tests/Drupal/Tests/BrowserTestBase.php, line 434

Class

BrowserTestBase
Provides a test case for functional Drupal tests.

Namespace

Drupal\Tests

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();
  }
  // Restore original shutdown callbacks.
  if (function_exists('drupal_register_shutdown_function')) {
    $callbacks =& drupal_register_shutdown_function();
    $callbacks = $this->originalShutdownCallbacks;
  }
}

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