We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d42c3 commit 6e9b418Copy full SHA for 6e9b418
src/test/java/com/nordstrom/common/file/PathUtilsTest.java
@@ -34,6 +34,7 @@ public void testNextPath() throws IOException {
34
assertEquals(path1.getFileName().toString(), "testNextPath.txt");
35
36
path1.toFile().createNewFile();
37
+
38
Path path2 = PathUtils.getNextPath(targetPath, "testNextPath", "txt");
39
assertEquals(path2.getFileName().toString(), "testNextPath-2.txt");
40
Path path3 = PathUtils.getNextPath(targetPath, "test", "txt");
0 commit comments