Searched refs:entrySetOutput (Results 1 – 5 of 5) sorted by relevance
428 HashSet entrySetOutput = new HashSet(); in test_forEach() local429 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()430 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local
716 HashSet<Map.Entry<String,String>> entrySetOutput = new HashSet<>(); in test_forEach() local717 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()718 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local
732 LinkedHashSet<Map.Entry<String,String>> entrySetOutput = new LinkedHashSet<>(); in test_forEach() local733 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()734 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local
882 HashSet<Map.Entry<String,String>> entrySetOutput = new HashSet<>(); in test_forEach() local883 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()884 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local
1978 HashSet<Map.Entry<String,String>> entrySetOutput = new HashSet<>(); in test_forEach() local1979 map.entrySet().forEach((v) -> entrySetOutput.add(v)); in test_forEach()1980 assertEquals(map.entrySet(), entrySetOutput); in test_forEach() local