use of net.sf.ehcache.config.CacheConfiguration in project metrics by dropwizard.
the class InstrumentedEhcacheTest method setUp.
@Before
public void setUp() {
final Cache c = new Cache(new CacheConfiguration("test", 100));
MANAGER.addCache(c);
this.cache = InstrumentedEhcache.instrument(registry, c);
}
Aggregations