//
// We need to initialise the cache and get the one and hopefully only
// instance of it.
//
Cache cache = volantis.getCSSCache();
//
// Store our WritableCSSEntityMock in the cache and get the identity
// that can be used to retrieve the entry.
//
CacheIdentity identity = cache.store(
new CSSCacheEntry(writableCSSEntityMock));
//
// Now remove all entries so we get a cache miss.
//
cache.clear();
//
// EXPECTATIONS
//