()
| 1095 | } |
| 1096 | |
| 1097 | @Test |
| 1098 | public void testRemove() throws Exception { |
| 1099 | assertMemoryLeak(() -> { |
| 1100 | try (Path path = new Path().of(temporaryFolder.newFile().getAbsolutePath())) { |
| 1101 | Assert.assertTrue(Files.touch(path.$())); |
| 1102 | Assert.assertTrue(Files.exists(path.$())); |
| 1103 | Assert.assertTrue(TestUtils.remove(path.$())); |
| 1104 | Assert.assertFalse(Files.exists(path.$())); |
| 1105 | } |
| 1106 | }); |
| 1107 | } |
| 1108 | |
| 1109 | @Test |
| 1110 | public void testSendFileOver2GB() throws Exception { |
nothing calls this directly
no test coverage detected