assertEquals(value, cache.get(fqn, key));
assertNull(loader.get(fqn));
// evict from cache
mgr.begin();
cache.evict(fqn);
mgr.commit();
mgr.begin();
// should now be passivated in the loader
// don't do a cache.get() first as this will activate this node from the loader again!