public void DropDatabase()
        {
            LoadTestDatabase db = new LoadTestDatabase(this.ConnectionString);

            try
            {
                db.DropDatabase("");
            }
            catch (Exception ex)
            {
                throw new Exception("Falha ao excluir a base de dados: " + ex.Message);
            }
        }