public function tearDown()
 {
     parent::tearDown();
     if ($this->_conn->getSchemaManager()->tablesExist("ddc1372_foobar")) {
         try {
             $sm = $this->_conn->getSchemaManager();
             $sm->dropTable('ddc1372_foobar');
         } catch (\Exception $e) {
             $this->fail($e->getMessage());
         }
     }
 }
 public function tearDown()
 {
     parent::tearDown();
     if (self::$tableCreated) {
         $sm = $this->_conn->getSchemaManager();
         try {
             $sm->dropTable('modify_limit_table');
             $sm->dropTable('modify_limit_table2');
             self::$tableCreated = false;
         } catch (DBALException $e) {
         }
     }
 }
Exemple #3
0
 public function tearDown()
 {
     parent::tearDown();
     $this->resetSharedConn();
 }