public void vanillaBatchGetItemTest() throws Exception {
this.vanillaBatchWriteItemTest();
BatchGetItemRequest batchGetItemRequest = new BatchGetItemRequest();
Map<String, KeysAndAttributes> requestItems = new HashMap<String, KeysAndAttributes>();
KeysAndAttributes keysAndAttributes1 = new KeysAndAttributes();
List<Map<String, AttributeValue>> itemKeys1 = new ArrayList<Map<String, AttributeValue>>();
itemKeys1.add(createItemKey(hashKeyName1, new AttributeValue().withN("6")));
keysAndAttributes1.setKeys(itemKeys1);
List<String> attributesToGet1 = new ArrayList<String>();
attributesToGet1.add(hashKeyName1);
keysAndAttributes1.setAttributesToGet(attributesToGet1);
KeysAndAttributes keysAndAttributes2 = new KeysAndAttributes();
List<Map<String, AttributeValue>> itemKeys2 = new ArrayList<Map<String, AttributeValue>>();
itemKeys2.add(createItemKey(hashKeyName2, new AttributeValue().withN("1")));
keysAndAttributes2.setKeys(itemKeys2);
List<String> attributesToGet2 = new ArrayList<String>();
attributesToGet2.add(hashKeyName2);
keysAndAttributes2.setAttributesToGet(attributesToGet2);
//Test case 1: Every request has matches.
// keys.add(new Key(new AttributeValue("4")));
// keys.add(new Key(new AttributeValue("5")));
// keys.add(new Key(new AttributeValue("3")));