/** * Test if you can add directories and files to the classpath. Originally checked only for files */ public static void testAddDirToClasspath() throws Exception { Workspace ws = new Workspace(new File("test/ws")); Project top = ws.getProject("p1"); top.addClasspath(top.getOutput()); assertTrue(top.check()); }
/** #194 StackOverflowError when -runbundles in bnd.bnd refers to itself */ public static void testProjectReferringToItself() throws Exception { Workspace ws = new Workspace(new File("test/ws")); Project top = ws.getProject("bug194"); top.addClasspath(top.getOutput()); assertTrue(top.check("Circular dependency context")); }