tearDown() 공개 메소드

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();
 }