}
@Test(dataProvider = com.linkedin.restli.internal.common.TestConstants.RESTLI_PROTOCOL_1_2_PREFIX + "requestOptionsDataProvider")
public void testBatchGetEntity(RestliRequestOptions requestOptions) throws RemoteInvocationException
{
Request<BatchKVResponse<CompoundKey, EntityResponse<Message>>> request = new AssociationsRequestBuilders(requestOptions).batchGet().ids(DB.keySet()).build();
ResponseFuture<BatchKVResponse<CompoundKey, EntityResponse<Message>>> responseFuture = REST_CLIENT.sendRequest(request);
Response<BatchKVResponse<CompoundKey, EntityResponse<Message>>> response = responseFuture.getResponse();
BatchKVResponse<CompoundKey, EntityResponse<Message>> entityResponse = response.getEntity();