public void testNoEvictionRemovePerformance() {
   Eviction lru = Eviction.NONE;
   testRemovePerformance(
       COUNT,
       new BoundedEquivalentConcurrentHashMapV8<Integer, Integer>(
           COUNT,
           COUNT >> 1,
           lru,
           BoundedEquivalentConcurrentHashMapV8.getNullEvictionListener(),
           AnyEquivalence.INT,
           AnyEquivalence.INT),
       lru.toString());
 }
 @Test(priority = 10)
 public void testLIRSRemovePerformance() {
   Eviction lirs = Eviction.LIRS;
   testRemovePerformance(
       COUNT,
       new BoundedEquivalentConcurrentHashMapV8<Integer, Integer>(
           COUNT,
           COUNT >> 1,
           lirs,
           BoundedEquivalentConcurrentHashMapV8.getNullEvictionListener(),
           AnyEquivalence.INT,
           AnyEquivalence.INT),
       lirs.toString());
 }