* <code>{@link EhCacheFacade#onFlushCache(org.springmodules.cache.FlushingModel)}</code>
* flushes the cache specified in the given cache model.
*/
public void testOnFlushCache() throws Exception {
setUpCache();
cache.put(new Element(KEY, "A Value"));
cacheFacade.onFlushCache(flushingModel);
Object cachedValue = cache.get(KEY);
assertNull("The cache '" + CACHE_NAME + "' should be empty", cachedValue);
}