Created
November 2, 2014 21:46
-
-
Save vfarcic/d590188e1f38aa4fd6c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.technologyconversations.java8exercises.streams; | |
import org.junit.Test; | |
import java.util.List; | |
import java.util.Map; | |
import static com.technologyconversations.java8exercises.streams.Partitioning.*; | |
import static java.util.Arrays.asList; | |
import static org.assertj.core.api.Assertions.assertThat; | |
/* | |
Partition adults and kids | |
*/ | |
public class PartitioningSpec { | |
@Test | |
public void partitionAdultsShouldSeparateKidsFromAdults() { | |
Person sara = new Person("Sara", 4); | |
Person viktor = new Person("Viktor", 40); | |
Person eva = new Person("Eva", 42); | |
List<Person> collection = asList(sara, eva, viktor); | |
Map<Boolean, List<Person>> result = partitionAdults(collection); | |
assertThat(result.get(true)).hasSameElementsAs(asList(viktor, eva)); | |
assertThat(result.get(false)).hasSameElementsAs(asList(sara)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment