@AfterMethod
public void clearStats() {
for (Cache<?, ?> c: caches) {
log.trace("Clearing stats for cache store on cache "+ c);
DummyInMemoryStore cs = (DummyInMemoryStore) TestingUtil.getFirstLoader(c);
cs.clearStats();
}
}
public void testPutFromNonOwner() throws Exception {
String key = "k4", value = "value4";