-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Part1 (by Vasilii Bobkov) #43
base: master
Are you sure you want to change the base?
Conversation
|
||
final List<Person> persons = streamPerson.collect(toList()); | ||
assertThat(persons.size(), is(1)); | ||
assertEquals(person, persons.get(0)); | ||
|
||
// TODO Create completed CompletableFuture | ||
final CompletableFuture<Person> futurePerson = null; | ||
final CompletableFuture<Person> futurePerson = new CompletableFuture<>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use .completedFuture
assertEquals(person, result2.get()); | ||
|
||
// TODO Create completed CompletableFuture | ||
final CompletableFuture<Person> futurePerson = null; | ||
final CompletableFuture<Person> futurePerson = new CompletableFuture<>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above
|
||
assertEquals(person.getFirstName(), streamFirstName.collect(toList()).get(0)); | ||
|
||
// TODO Create completed CompletableFuture | ||
final CompletableFuture<Person> futurePerson = null; | ||
final CompletableFuture<Person> futurePerson = new CompletableFuture<>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above.
|
||
final int[] codePointsArray = codePoints.toArray(); | ||
assertEquals(person.getFirstName(), new String(codePointsArray, 0, codePointsArray.length)); | ||
|
||
// TODO Create completed CompletableFuture | ||
final CompletableFuture<Person> futurePerson = null; | ||
final CompletableFuture<Person> futurePerson = new CompletableFuture<>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above.
Part1 (by Vasilii Bobkov)