Update StreamToMapAndMultiMapUnitTest.java (#15146)
This commit is contained in:
parent
d847f0d335
commit
946f849767
|
@ -1,6 +1,7 @@
|
||||||
package com.baeldung.streamtomapandmultimap;
|
package com.baeldung.streamtomapandmultimap;
|
||||||
|
|
||||||
import com.google.common.collect.LinkedHashMultimap;
|
import com.google.common.collect.ArrayListMultimap;
|
||||||
|
import com.google.common.collect.ListMultimap;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
@ -32,16 +33,16 @@ public class StreamToMapAndMultiMapUnitTest {
|
||||||
public void givenStringStream_whenConvertingToMultimap_thenExpectedMultimapIsGenerated() {
|
public void givenStringStream_whenConvertingToMultimap_thenExpectedMultimapIsGenerated() {
|
||||||
Stream<String> stringStream = Stream.of("one", "two", "three", "two");
|
Stream<String> stringStream = Stream.of("one", "two", "three", "two");
|
||||||
|
|
||||||
LinkedHashMultimap<Object, Object> multimap = LinkedHashMultimap.create();
|
ListMultimap<String, String> multimap = stringStream.collect(
|
||||||
|
ArrayListMultimap::create,
|
||||||
|
(map, element) -> map.put(element, element),
|
||||||
|
ArrayListMultimap::putAll
|
||||||
|
);
|
||||||
|
|
||||||
stringStream.collect(Collectors.groupingBy(
|
ListMultimap<String, String> expectedMultimap = ArrayListMultimap.create();
|
||||||
s -> s,
|
|
||||||
Collectors.mapping(s -> s, Collectors.toList())
|
|
||||||
)).forEach((key, value) -> multimap.putAll(key, value));
|
|
||||||
|
|
||||||
LinkedHashMultimap<Object, Object> expectedMultimap = LinkedHashMultimap.create();
|
|
||||||
expectedMultimap.put("one", "one");
|
expectedMultimap.put("one", "one");
|
||||||
expectedMultimap.put("two", "two");
|
expectedMultimap.put("two", "two");
|
||||||
|
expectedMultimap.put("two", "two");
|
||||||
expectedMultimap.put("three", "three");
|
expectedMultimap.put("three", "three");
|
||||||
|
|
||||||
assertEquals(expectedMultimap, multimap);
|
assertEquals(expectedMultimap, multimap);
|
||||||
|
@ -97,4 +98,4 @@ public class StreamToMapAndMultiMapUnitTest {
|
||||||
|
|
||||||
assertEquals(expectedMap, resultMap);
|
assertEquals(expectedMap, resultMap);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue