Home
last modified time | relevance | path

Searched refs:entrySetOutput (Results 1 – 5 of 5) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DWeakHashMapTest.java428 HashSet entrySetOutput = new HashSet(); in test_forEach() local
429 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()
430 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local
DHashMapTest.java716 HashSet<Map.Entry<String,String>> entrySetOutput = new HashSet<>(); in test_forEach() local
717 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()
718 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local
DLinkedHashMapTest.java732 LinkedHashSet<Map.Entry<String,String>> entrySetOutput = new LinkedHashSet<>(); in test_forEach() local
733 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()
734 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local
DIdentityHashMapTest.java882 HashSet<Map.Entry<String,String>> entrySetOutput = new HashSet<>(); in test_forEach() local
883 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()
884 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local
DTreeMapTest.java1978 HashSet<Map.Entry<String,String>> entrySetOutput = new HashSet<>(); in test_forEach() local
1979 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()
1980 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local