1 23 package org.archive.util; 24 25 import java.io.File ; 26 27 import junit.framework.TestCase; 28 29 33 public class IoUtilsTest extends TestCase { 34 35 public void testGetClasspathPath() { 36 final String absUnixPath = "/one/two/three"; 37 File f = new File (absUnixPath); 38 assertTrue("Path is wrong abs " + IoUtils.getClasspathPath(f), 39 IoUtils.getClasspathPath(f).equals(absUnixPath)); 40 final String relUnixPath = "one/two/three"; 41 f = new File (relUnixPath); 42 assertTrue("Path is wrong rel " + IoUtils.getClasspathPath(f), 43 IoUtils.getClasspathPath(f).equals(relUnixPath)); 44 final String nameUnixPath = "three"; 45 f = new File (nameUnixPath); 46 assertTrue("Path is wrong name " + IoUtils.getClasspathPath(f), 47 IoUtils.getClasspathPath(f).equals(nameUnixPath)); 48 } 49 } 50 | Popular Tags |