BAEL-7177

review comments implemented.
This commit is contained in:
parthiv39731 2023-11-06 19:08:47 +05:30
parent aa27014425
commit fb2f90d88f

View File

@ -95,15 +95,6 @@ public class ModifyStreamUnitTest {
assertEquals(3, newPersonList.size());
}
@Test
void givenPersonList_whenRemovePersonWithRemoveIf_thenPersonRemoved() {
assertEquals(4, personList.size());
personList.removeIf(e -> e.getName().equals("John"));
assertEquals(3, personList.size());
}
@Test
void givenPersonList_whenUpdatePersonEmailByInterferingWithForEach_thenPersonEmailUpdated() {
personList.stream().forEach(e -> e.setEmail(e.getEmail().toUpperCase()));
@ -128,11 +119,12 @@ public class ModifyStreamUnitTest {
newImmutablePersonList.forEach(e -> assertEquals(e.getEmail(), e.getEmail().toUpperCase()));
}
@Test
void givenPersonList_whenUpdatePersonEmailByInterferingWithPeek_thenPersonEmailUpdated() {
personList.stream()
.peek(e -> e.setEmail(e.getEmail().toUpperCase()))
.collect(Collectors.toList());
.peek(e -> e.setEmail(e.getEmail().toUpperCase()))
.collect(Collectors.toList());
personList.forEach(e -> assertEquals(e.getEmail(), e.getEmail().toUpperCase()));
}