protected function tearDown()
 {
     parent::tearDown();
     $this->_helper->setDefaultAcl(null);
     $this->_helper->setAcl(null);
     $this->_helper->setDefaultRole(null);
     $this->_helper->setRole(null);
 }
示例#2
0
 protected function tearDown()
 {
     clearstatcache();
     // Remove tmp file
     if ($this->_tmpFileName && file_exists($this->_tmpFileName)) {
         chmod($this->_tmpFileName, 0600);
         // Reset file permissions, for avoid permission denied on Windows
         unlink($this->_tmpFileName);
     }
     parent::tearDown();
 }
示例#3
0
文件: PhpTest.php 项目: tpc2/phprack
 protected function tearDown()
 {
     parent::tearDown();
     ini_restore('default_socket_timeout');
 }
示例#4
0
 protected function tearDown()
 {
     unset($this->_adapter);
     parent::tearDown();
 }
 public function tearDown()
 {
     parent::tearDown();
     //        MemcacheHandler::close();
 }
示例#6
0
 protected function tearDown()
 {
     unset($this->_package);
     parent::tearDown();
 }