}
public void testParentFirstClassLoader() throws Exception {
URLClassLoader pcl = (URLClassLoader) getClass().getClassLoader();
ClassLoader clsLoader = new JarFileClassLoader("", pcl.getURLs(), pcl, false, new String[0], new String[0]);
Class clazz = clsLoader.loadClass(TestClass.class.getName());
assertSame(TestClass.class, clazz);
}
public void testSelfFirstClassLoader() throws Exception {
URLClassLoader pcl = (URLClassLoader) getClass().getClassLoader();