Home
last modified time | relevance | path

Searched refs:isSameFileAs (Results 1 – 2 of 2) sorted by relevance

/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DJimfsUnixLikeFileSystemTest.java461 assertThatPath("test").isSameFileAs("/work/test"); in testCreateDirectory_relative()
470 assertThatPath("foo/bar").isSameFileAs("/work/foo/bar"); in testCreateDirectory_relative()
480 assertThatPath("test.txt").isSameFileAs("/work/test.txt"); in testCreateFile_relative()
489 assertThatPath("foo/test.txt").isSameFileAs("/work/foo/test.txt"); in testCreateFile_relative()
1106 assertThatPath(path).isSameFileAs(bar); in testDelete_pathPermutations()
1117 assertThatPath(path).isSameFileAs(hello); in testDelete_pathPermutations()
1295 assertThatPath("one/two/three/link/baz/file").isSameFileAs("/foo/bar/baz/file"); in testSymbolicLinks_lookupOfAbsoluteSymlinkPathFromRelativePath()
1306 assertThatPath("/link.txt").isSameFileAs("/file.txt"); in testLink()
1938 assertThatPath("/foo").isSameFileAs("/foo"); in testIsSameFile()
1939 assertThatPath("/bar").isSameFileAs("/bar"); in testIsSameFile()
[all …]
DPathSubject.java232 public PathSubject isSameFileAs(String path) throws IOException { in isSameFileAs() method in PathSubject
233 return isSameFileAs(toPath(path)); in isSameFileAs()
237 public PathSubject isSameFileAs(Path path) throws IOException { in isSameFileAs() method in PathSubject