(String name)
| 33 | } |
| 34 | |
| 35 | private static Class loadClass(String name) throws Exception { |
| 36 | return new MyClassLoader(DefineClass.class.getClassLoader()).defineClass |
| 37 | (name, read(findClass(name, new File(System.getProperty("user.dir"))))); |
| 38 | } |
| 39 | |
| 40 | private static void testStatic() throws Exception { |
| 41 | loadClass("DefineClass$Hello") |
no test coverage detected