// check the group short name lookup:
assertEquals(1L, cache.get(CacheKeys.GROUP_BY_SHORT_NAME + "group1"));
// get the domain group by id
DomainGroupModelView group = (DomainGroupModelView) cache.get(CacheKeys.GROUP_BY_ID + "1");
// check the standard properties
assertEquals(1L, group.getEntityId());
assertEquals("E Group 1 Name", group.getName());
assertEquals("group1", group.getShortName());
assertTrue(group.isPublic());
// check the followers:
final long person1 = 98L;
final long person2 = 99L;
final long person3 = 42L;