This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Test | |
| public void testSymbolicLink(TestInfo testInfo) throws Exception | |
| { | |
| File dir = MavenTestingUtils.getTargetTestingDir(testInfo.getDisplayName()); | |
| FS.ensureEmpty(dir); | |
| File realFile = new File(dir, "real"); | |
| Path realPath = realFile.toPath(); | |
| FS.touch(realFile); | |
| File linkFile = new File(dir, "link"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test |
OlderNewer