*/
@Ignore
@Test
public void jar() throws Exception {
TestClassLoader tcl = new TestClassLoader(toURLs(ExpressionsJar), this.getClass().getClassLoader());
ZipFile zf = new ZipFile(ExpressionsJar);
Enumeration<? extends ZipEntry> entries = zf.entries();
while (entries.hasMoreElements()) {
ZipEntry ze = entries.nextElement();
System.out.println(ze.getName());
String name = ze.getName();
if (name.endsWith(".class")) {
name = name.substring(0,name.length()-6);
tcl.loadClass(name.replaceAll("/","."));
}
}
// URL url = tcl.findResource("data/SimpleClass.class");
// Assert.assertNotNull(url);
// url = tcl.findResource("data/MissingClass.class");