Created
November 2, 2014 21:37
-
-
Save vfarcic/b1d4cf12ded58251e1ca 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 static com.technologyconversations.java8exercises.streams.OldestPerson.*; | |
import static java.util.Arrays.asList; | |
import static org.assertj.core.api.Assertions.assertThat; | |
/* | |
Get oldest person from the collection | |
*/ | |
public class OldestPersonSpec { | |
@Test | |
public void getOldestPersonShouldReturnOldestPerson() { | |
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); | |
assertThat(getOldestPerson(collection)).isEqualToComparingFieldByField(eva); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment