You are here

protected function PathUnitTestBase::tearDown in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Path/PathUnitTestBase.php \Drupal\system\Tests\Path\PathUnitTestBase::tearDown()

Performs cleanup tasks after each individual test method has been run.

Overrides KernelTestBase::tearDown

File

core/modules/system/src/Tests/Path/PathUnitTestBase.php, line 31
Contains \Drupal\system\Tests\Path\PathUnitTestBase.

Class

PathUnitTestBase
Base class for Path/URL alias integration tests.

Namespace

Drupal\system\Tests\Path

Code

protected function tearDown() {
  $this->fixtures
    ->dropTables(Database::getConnection());
  parent::tearDown();
}