tearDown() публичный Метод

Tear down
public tearDown ( )
Пример #1
0
 public function tearDown()
 {
     if (is_dir($this->path)) {
         $this->rmdir($this->path);
     }
     parent::tearDown();
 }
Пример #2
0
 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();
 }