@Test
public void testComplexPath()
throws IOException
{
PathTranslator trans = new PathTranslator("./target/test-classes");
File xl = trans.translate("/io/apigee/trireme/../../apigee/trireme/core/../core/test/PathTranslatorTest.class");
File realFile = new File("./target/test-classes/io/apigee/trireme/core/test/PathTranslatorTest.class");
assertTrue(realFile.exists());
assertEquals(realFile.getCanonicalPath(), xl.getCanonicalPath());
}