/**
  * @covers DatabaseBase::dropTable
  */
 public function testDropTable()
 {
     $this->database->setExistingTables(array('table'));
     $this->database->dropTable('table', __METHOD__);
     $this->assertLastSql('DROP TABLE table');
 }