assert !cache.containsKey("a");
}
public void testRemove() throws Exception {
GlobalComponentRegistry gcr = TestingUtil.extractGlobalComponentRegistry(this.cacheManager);
Interpreter interpreter = gcr.getComponent(Interpreter.class);
String sessionId = interpreter.createSessionId(BasicCacheContainer.DEFAULT_CACHE_NAME);
interpreter.execute(sessionId, "put 'a' 'a';");
Object a = cache.get("a");
assert a.equals("a");
interpreter.execute(sessionId, "remove 'a';");
assert !cache.containsKey("a");
interpreter.execute(sessionId, "put 'b' 'b';");
Object b = cache.get("b");
assert b.equals("b");
interpreter.execute(sessionId, "remove 'b' 'c';");
assert cache.containsKey("b");
}