assertTrue(responseItem.getEntry().get(CANONICAL_USER_ID).containsKey("size"));
}
@Test
public void testGetExpectedAppDataForPlural() throws Exception {
DataCollection responseItem = db.getPersonData(
ImmutableSet.of(CANON_USER, JOHN_DOE), SELF_GROUP, APP_ID, Collections.<String>emptySet(),
new FakeGadgetToken()).get();
assertFalse(responseItem.getEntry().isEmpty());
assertFalse(responseItem.getEntry().get(CANONICAL_USER_ID).isEmpty());
assertSame(2, responseItem.getEntry().get(CANONICAL_USER_ID).size());
assertTrue(responseItem.getEntry().get(CANONICAL_USER_ID).containsKey("count"));
assertTrue(responseItem.getEntry().get(CANONICAL_USER_ID).containsKey("size"));
assertFalse(responseItem.getEntry().get(JOHN_DOE.getUserId()).isEmpty());
assertSame(1, responseItem.getEntry().get(JOHN_DOE.getUserId()).size());
assertTrue(responseItem.getEntry().get(JOHN_DOE.getUserId()).containsKey("count"));
}