예제 #1
0
 protected function tearDown()
 {
     $testcoverageFile = sys_get_temp_dir() . DS . 'testcoverage.php';
     if (file_exists($testcoverageFile)) {
         unlink($testcoverageFile);
     }
     parent::tearDown();
 }
예제 #2
0
 /**
  * {@inheritdoc}
  */
 protected function tearDown()
 {
     $this->removeDirectory($this->targetDir);
     parent::tearDown();
 }
 /**
  * Tear down.
  */
 function tearDown()
 {
     $r = $this->createRequest("archive_address")->setParam("address", $this->address)->exec();
     $this->assertEquals($r["archived"], $this->address);
     parent::tearDown();
 }
예제 #4
0
 public function tearDown()
 {
     $this->db->query("DROP TABLE IF EXISTS `testing_table`;");
     parent::tearDown();
 }