Пример #1
0
 public function tearDown()
 {
     parent::tearDown();
     $q = new DropTableQuery('products');
     $q->IfExists();
     $this->assertQuery($q);
     $q = new DropTableQuery('users');
     $q->IfExists();
     $this->assertQuery($q);
 }
Пример #2
0
 public function tearDown()
 {
     parent::tearDown();
     $this->cleanUpTables();
 }