(String[] args)
| 39 | } |
| 40 | |
| 41 | public static void main(String[] args) throws Exception { |
| 42 | Class c = new MyClassLoader(LazyLoading.class.getClassLoader()).loadClass |
| 43 | ("LazyLoading$Test"); |
| 44 | |
| 45 | c.getMethod("test").invoke(null); |
| 46 | } |
| 47 | |
| 48 | private static class MyClassLoader extends ClassLoader { |
| 49 | public MyClassLoader(ClassLoader parent) { |
nothing calls this directly
no test coverage detected