You are here

public function BEF_TestBase::tearDown in Better Exposed Filters 7.3

Delete created files and temporary files directory, delete the tables created by setUp(), and reset the database prefix.

Overrides DrupalWebTestCase::tearDown

File

tests/better_exposed_filters_TestBase.php, line 71
Base class for testing the Better Exposed Filters module. @author mikeker

Class

BEF_TestBase
Helper functions for Better Exposed Filters tests.

Code

public function tearDown() {
  debug('This test run took ' . (time() - $this->start) . ' seconds.');
  unset($this->view);
  parent::tearDown();
}