コード例 #1
0
 public function tearDown()
 {
     parent::tearDown();
     if ($this->emptySqlDumpFile) {
         unlink($this->emptySqlDumpFile);
     }
 }
コード例 #2
0
 public function tearDown()
 {
     parent::tearDown();
     Mockery::close();
     // Necessary because some tests run in a separate process
 }
コード例 #3
0
ファイル: ClassLoaderTest.php プロジェクト: 0svald/icingaweb2
 public function tearDown()
 {
     parent::tearDown();
     system('rm -rf ' . $this->baseDir);
 }
コード例 #4
0
ファイル: HookTest.php プロジェクト: 0svald/icingaweb2
 public function tearDown()
 {
     parent::tearDown();
     Hook::clean();
 }
コード例 #5
0
 public function tearDown()
 {
     parent::tearDown();
     unlink($this->target);
 }
コード例 #6
0
ファイル: ConfigTest.php プロジェクト: 0svald/icingaweb2
 /**
  * Reset config dir
  */
 public function tearDown()
 {
     parent::tearDown();
     Config::$configDir = $this->oldConfigDir;
 }
コード例 #7
0
ファイル: IniWriterTest.php プロジェクト: hsanjuan/icingaweb2
 public function tearDown()
 {
     parent::tearDown();
     unlink($this->tempFile);
     unlink($this->tempFile2);
 }