tearDown() public method

Tear down
public tearDown ( )
Esempio n. 1
0
 public function tearDown()
 {
     if (is_dir($this->path)) {
         $this->rmdir($this->path);
     }
     parent::tearDown();
 }
Esempio n. 2
0
 public function tearDown()
 {
     if (class_exists('MongoClient')) {
         $client = new MongoClient();
         $client->selectDB($this->testDbName)->drop();
     }
     parent::tearDown();
 }
Esempio n. 3
0
 public function tearDown()
 {
     $this->pdo = null;
     parent::tearDown();
 }