[impr-list-of-lists] The size of list of lists (#15002)
This commit is contained in:
parent
0530fb8bca
commit
fdca014527
|
@ -71,4 +71,15 @@ public class ListOfListsUnitTest {
|
||||||
assertThat(listOfLists.get(2)).containsExactly("Slack", "Zoom", "Microsoft Teams", "Telegram");
|
assertThat(listOfLists.get(2)).containsExactly("Slack", "Zoom", "Microsoft Teams", "Telegram");
|
||||||
printListOfLists(listOfLists);
|
printListOfLists(listOfLists);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@Test
|
||||||
|
void givenListOfLists_whenGettingSizeOfSubListsAndSizeOfElements_thenGetExpectedResults() throws URISyntaxException, IOException {
|
||||||
|
List<List<String>> listOfLists = getListOfListsFromCsv();
|
||||||
|
// size of inner lists
|
||||||
|
assertThat(listOfLists).hasSize(3);
|
||||||
|
|
||||||
|
// size of all elements in subLists
|
||||||
|
int totalElements = listOfLists.stream().mapToInt(List::size).sum();
|
||||||
|
assertThat(totalElements).isEqualTo(12);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue