()
| 8 | public class MinMax { |
| 9 | |
| 10 | @Test |
| 11 | public void min() { |
| 12 | List<Integer> numbers = List.of(1, 2, 3, 100, 23, 93, 99); |
| 13 | Integer min = numbers.stream().min(Comparator.naturalOrder()).get(); |
| 14 | System.out.println(min); |
| 15 | } |
| 16 | |
| 17 | @Test |
| 18 | public void max() { |
nothing calls this directly
no outgoing calls
no test coverage detected