public void testIndexPath3() { String base = "/base/test"; String collect = "/base/test/index.html"; assertEquals(collect, FileNames.as(FileNames.SLASH).getIndexedPath(base, "index.html")); }
public void testDirectory4() { String base = "/base/testhello.html"; String collect = "/base/"; assertEquals(collect, FileNames.as(FileNames.SLASH).getDirectoryPath(base, true)); }
public void testChangedExtension2() { String base = "test"; String collect = "test"; assertEquals(collect, FileNames.as(FileNames.SLASH).getChangedExtensionName(base, "gif")); }