(Path coldRoot, Path srcFilePath, Path softLinkFilePath)
| 1545 | } |
| 1546 | |
| 1547 | private static void createSoftLink(Path coldRoot, Path srcFilePath, Path softLinkFilePath) { |
| 1548 | Assert.assertEquals(0, Files.mkdirs(coldRoot, 509)); |
| 1549 | Assert.assertEquals(0, Files.softLink(srcFilePath.$(), softLinkFilePath.$())); |
| 1550 | Assert.assertTrue(Os.isWindows() || Files.isSoftLink(softLinkFilePath.$())); // TODO: isSoftLink is not working on Windows |
| 1551 | } |
| 1552 | |
| 1553 | private static void createTempFile(Path path, String fileName, String fileContent) { |
| 1554 | final int buffSize = fileContent.length() * 3; |
no test coverage detected