tearDown() public method

Tear down
public tearDown ( )
示例#1
0
 public function tearDown()
 {
     if (is_dir($this->path)) {
         $this->rmdir($this->path);
     }
     parent::tearDown();
 }
示例#2
0
文件: GridFSTest.php 项目: ASP96/imbo
 public function tearDown()
 {
     if (class_exists('MongoClient')) {
         $client = new MongoClient();
         $client->selectDB($this->testDbName)->drop();
     }
     parent::tearDown();
 }
示例#3
0
 public function tearDown()
 {
     $this->pdo = null;
     parent::tearDown();
 }