public void testDownloadName3() { String test = "hello(1)"; String correct = "hello"; assertEquals(correct, FileNames.getRemovedLastDownloadNumbers(test)); }
public void testDirectory4() { String base = "/base/testhello.html"; String collect = "/base/"; assertEquals(collect, FileNames.as(FileNames.SLASH).getDirectoryPath(base, true)); }
public void testExtension1() { String base = "test.jpg"; String collect = "jpg"; assertEquals(collect, FileNames.getExtension(base)); }
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 testChangedExtension2() { String base = "test"; String collect = "test"; assertEquals(collect, FileNames.as(FileNames.SLASH).getChangedExtensionName(base, "gif")); }
public void testRemovedExtension2() { String base = "test"; String collect = "test"; assertEquals(collect, FileNames.getRemovedExtensionName(base)); }