()
| 272 | } |
| 273 | |
| 274 | @Test |
| 275 | public void testDeatch() throws Exception { |
| 276 | assertMemoryLeak(() -> { |
| 277 | int fdFake = 123; |
| 278 | long fd = Files.createUniqueFd(fdFake); |
| 279 | Files.detach(fd); |
| 280 | }); |
| 281 | } |
| 282 | |
| 283 | @Test |
| 284 | public void testDeleteDir() throws Exception { |
nothing calls this directly
no test coverage detected