assertTrue("Db should be created when it is a non empty string", dbNames.contains(dbName));
// Db not populate by test Cases
mongoInstance.dropDatabase(dbName);
}
} catch (MongoException m) {
ApplicationException e = new ApplicationException(ErrorCodes.DB_CREATION_EXCEPTION, "Error Testing Database insert operation", m.getCause());
formErrorResponse(logger, e);
throw e;
}
return null;
}