final Statistics statistics = new Statistics(name);
for (final Map.Entry<Integer,Integer> entry : cache.entrySet()) {
final int key = entry.getKey();
final int value = entry.getValue();
assertEquals(key*key, value);
statistics.accept(key);
}
return statistics;
}
/**