()
| 47 | } |
| 48 | |
| 49 | @Test |
| 50 | void removesEvenNumbers() { |
| 51 | Integer[] values = {22, 23}; |
| 52 | assertThat(removeValues(values, number -> number % 2 == 0, Integer.class)).containsExactly(23); |
| 53 | } |
| 54 | |
| 55 | @Test |
| 56 | void emptyValueOf() throws Exception { |
nothing calls this directly
no test coverage detected