Searched refs:listCollected (Results 1 – 1 of 1) sorted by relevance
264 List<Integer> listCollected = Stream.of(1, 2, 3).collect(Collectors.toUnmodifiableList()); in realMain() local265 equal(listCollected, List.of(1, 2, 3)); in realMain()266 testCollection(listCollected); in realMain()267 testImmutableList(listCollected); in realMain()268 testListMutatorsAlwaysThrow(listCollected); in realMain()