cache1.put(A_B, "name", JOE);
cache1.put(A_B, "age", TWENTY);
cache1.put(A_C, "name", BOB);
cache1.put(A_C, "age", FORTY);
CacheSPI cache2 = null;
try
{
cache2 = createCache(false, false, true, false, false, true);
cache2.start();
//Vladimir October 5th 2007
//failure of integration of persistent state is not considered to be fatal
//to revisit with Manik
//fail("Should have caused an exception");
}
catch (Exception e)
{
}
//when persistent transfer fails as in this case state recipient cacheloader should be wiped clean
assertFalse("/a/b is not in cache loader ", cache2.getCacheLoaderManager().getCacheLoader().exists(A_B));
}