// Make sure that User2 is unaffected
Object shouldBeThere = cacheManager.getFromSessionCache( userSession2, "StringObject" ); //$NON-NLS-1$
Assert.assertNotNull( shouldBeThere );
// Kill user1's session
cacheManager.killSessionCache( userSession1 );
notThere = cacheManager.getFromSessionCache( userSession1, "repoDoc" ); //$NON-NLS-1$
Assert.assertNull( notThere );
// Make sure that User2 is still unaffected
shouldBeThere = cacheManager.getFromSessionCache( userSession2, "StringObject" ); //$NON-NLS-1$