use of org.apache.ignite.internal.processors.cache.distributed.dht.preloader.CachePartitionPartialCountersMap in project ignite by apache.
the class CachePartitionPartialCountersMapSelfTest method testEmptyMap.
/**
*/
@Test
public void testEmptyMap() throws Exception {
CachePartitionPartialCountersMap map = CachePartitionPartialCountersMap.EMPTY;
assertFalse(map.remove(1));
map.trim();
assertNotNull(map.toString());
}
Aggregations