(File file)
| 1609 | } |
| 1610 | |
| 1611 | private static void touch(File file) throws IOException { |
| 1612 | FileOutputStream fos = new FileOutputStream(file); |
| 1613 | fos.close(); |
| 1614 | } |
| 1615 | |
| 1616 | private void assertHardLinkPreservesFileContent(String fileName) throws Exception { |
| 1617 | assertMemoryLeak(() -> { |
no test coverage detected