()
| 308 | } |
| 309 | |
| 310 | @Test |
| 311 | void nullMap() { |
| 312 | // Act |
| 313 | Map<String, Collection<String>> actualMap = caseInsensitiveCopyOf(null); |
| 314 | // Assert result |
| 315 | assertThat(actualMap).isNotNull().isEmpty(); |
| 316 | } |
| 317 | |
| 318 | interface LastTypeParameter { |
| 319 | List<String> LIST_STRING = null; |
nothing calls this directly
no test coverage detected