Beispiel #1
0
 public function tearDown()
 {
     $this->_removeRecursive($this->_tmpCacheDir);
     if ($this->_umask != umask()) {
         umask($this->_umask);
         $this->fail("Umask wasn't reset");
     }
     parent::tearDown();
 }
Beispiel #2
0
 public function tearDown()
 {
     $_SERVER = $this->_bufferedServerSuperGlobal;
     $this->_removeRecursive($this->_tmpCacheDir);
     if ($this->_umask != umask()) {
         umask($this->_umask);
         $this->fail("Umask wasn't reset");
     }
     parent::tearDown();
 }
Beispiel #3
0
 public function tearDown()
 {
     if ($this->_obLevel > ob_get_Level()) {
         for ($i = ob_get_level(); $i < $this->_obLevel; $i++) {
             ob_start();
         }
         $this->fail("Nesting level of output buffering to often ended");
     } elseif ($this->_obLevel < ob_get_level()) {
         for ($i = ob_get_level(); $i > $this->_obLevel; $i--) {
             ob_end_clean();
         }
         $this->fail("Nesting level of output buffering not well restored");
     }
     parent::tearDown();
 }
Beispiel #4
0
 public function tearDown()
 {
     parent::tearDown();
 }
Beispiel #5
0
 public function tearDown()
 {
     // TODO
     parent::tearDown();
 }