/** * Removes cache files created during tests */ public function tearDown() { parent::tearDown(); $this->clean_cache_dir(); }
/** * Restores original timezone after testing. */ public function tearDown() { date_default_timezone_set($this->_original_timezone); parent::tearDown(); }
/** * Tear down environment */ public function tearDown() { parent::tearDown(); setlocale(LC_ALL, $this->default_locale); }
/** * Removes cache files created during tests */ public function tearDown() { parent::tearDown(); $this->cleanCacheDir(); }