tearDown() public method

Tear down
public tearDown ( )
コード例 #1
0
ファイル: FilesystemTest.php プロジェクト: ASP96/imbo
 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
ファイル: DoctrineTest.php プロジェクト: sgulseth/imbo
 public function tearDown()
 {
     $this->pdo = null;
     parent::tearDown();
 }