// testing circular reference
Support_Resources.copyFile(resources, "JarIndex", "hyts_41.jar");
Support_Resources.copyFile(resources, "JarIndex", "hyts_42.jar");
urls[0] = new URL("file:/" + resPath + "/JarIndex/hyts_41.jar");
ucl = URLClassLoader.newInstance(urls, null);
en = ucl.findResources("bpack/");
resourcesFound = resourcesFound
&& ((URL) en.nextElement()).equals(new URL("jar:file:/"
+ resPath.replace('\\', '/')
+ "/JarIndex/hyts_42.jar!/bpack/"));
assertTrue("Resources not found (2)", resourcesFound);