assert null == cs.load("k1");
}
public void testLoadAndStoreMarshalledValues() throws CacheLoaderException {
MarshalledValue key = new MarshalledValue(new Pojo().role("key"), true, getMarshaller());
MarshalledValue key2 = new MarshalledValue(new Pojo().role("key2"), true, getMarshaller());
MarshalledValue value = new MarshalledValue(new Pojo().role("value"), true, getMarshaller());
assert !cs.containsKey(key);
InternalCacheEntry se = TestInternalCacheEntryFactory.create(key, value);
cs.store(se);