use of org.apache.geode.internal.util.concurrent.CustomEntryConcurrentHashMap in project geode by apache.
the class ConcurrentHashMapJUnitTest method testClear.
/**
* clear removes all pairs
*/
@Test
public void testClear() {
CustomEntryConcurrentHashMap map = map5();
map.clear();
assertEquals(map.size(), 0);
}
Aggregations