Package com.github.mrcritical.ironcache.model

Examples of com.github.mrcritical.ironcache.model.Cache


  public void testClearCache() throws URISyntaxException {

    // Add items to the cache first
    primeTheCache(cacheName);

    Assert.assertTrue(cacheProvider.getCache(cacheName).or(new Cache()).getSize() > 0);

    cacheProvider.clearCache(cacheName);

    Assert.assertTrue(cacheProvider.getCache(cacheName).get().getSize() == 0);
  }
View Full Code Here

TOP

Related Classes of com.github.mrcritical.ironcache.model.Cache

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.