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

/openjdk7/jdk/test/java/nio/file/etc/
H A DExceptions.java42 String thisFile = "source";
47 testFileSystemException(thisFile, otherFile, reason);
49 testFileSystemException(thisFile, null, reason);
50 testFileSystemException(thisFile, otherFile, null);
54 exc = new FileSystemException(thisFile, otherFile, reason);
56 if (!exc.getFile().equals(thisFile) || !exc.getOtherFile().equals(otherFile))
60 static void testFileSystemException(String thisFile, argument
64 FileSystemException exc = new FileSystemException(thisFile, otherFile, reason);
65 if (!Objects.equals(thisFile, exc.getFile()))

Completed in 32 milliseconds