// assert 3 and 4
assertTrue(contentCache.isKeyInCache(cckey3));
assertTrue(contentCache.isKeyInCache(cckey4));
// remove for user
contentCache.evictContentForSession(sessionId);
assertFalse(contentCache.isKeyInCache(cckey3));
assertFalse(contentCache.isKeyInCache(cckey4));
assertTrue(contentCache.isKeyInCache(cckey2));
}