Пример #1
0
 public function testDropExportedPostsTable()
 {
     $result = $this->dao->doesExportedPostsTableExist();
     $this->assertFalse($result);
     $result = $this->dao->createExportedPostsTable();
     $this->assertTrue($result);
     $result = $this->dao->doesExportedPostsTableExist();
     $this->assertTrue($result);
     $result = $this->dao->dropExportedPostsTable();
     $this->assertTrue($result);
     $result = $this->dao->doesExportedPostsTableExist();
     $this->assertFalse($result);
 }