Searched defs:otherFile (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/test/java/nio/file/etc/
H A DExceptions.java43 String otherFile = "target";
47 testFileSystemException(thisFile, otherFile, reason);
48 testFileSystemException(null, otherFile, reason);
50 testFileSystemException(thisFile, otherFile, null);
54 exc = new FileSystemException(thisFile, otherFile, reason);
56 if (!exc.getFile().equals(thisFile) || !exc.getOtherFile().equals(otherFile))
61 String otherFile,
64 FileSystemException exc = new FileSystemException(thisFile, otherFile, reason);
67 if (!Objects.equals(otherFile, exc.getOtherFile()))
60 testFileSystemException(String thisFile, String otherFile, String reason) argument

Completed in 37 milliseconds