public void test_Constructor$Ljava_net_URLLjava_lang_ClassLoaderLjava_net_URLStreamHandlerFactory()
throws Exception {
class TestFactory implements URLStreamHandlerFactory {
public URLStreamHandler createURLStreamHandler(String protocol) {
if ("jar".equals(protocol)) {
return new Handler();
}
fail("Should be jar Handler. But " + protocol);
return null;
}