()
| 41 | class UtilTest { |
| 42 | |
| 43 | @Test |
| 44 | void removesEmptyStrings() { |
| 45 | String[] values = new String[] {"", null}; |
| 46 | assertThat(removeValues(values, value -> emptyToNull(value) == null, String.class)).isEmpty(); |
| 47 | } |
| 48 | |
| 49 | @Test |
| 50 | void removesEvenNumbers() { |
nothing calls this directly
no test coverage detected