assertNull(loader.get(fqn));
DummyTransactionManager mgr = DummyTransactionManager.getInstance();
// put something in the cache
mgr.begin();
cache.put(fqn, key, value);
mgr.commit();
// should be nothing in the loader
assertEquals(value, cache.get(fqn, key));