assert (collectionList.contains(collectionName));
// drop this collection
mongoInstance.getDB(dbName).getCollection(collectionName).drop();
} catch (MongoException m) // while dropping Db
{
ApplicationException e = new ApplicationException(ErrorCodes.COLLECTION_CREATION_EXCEPTION, "Error Testing Collection insert", m.getCause());
formErrorResponse(logger, e);
throw e;
}
return null;
}