(String name)
| 51 | } |
| 52 | |
| 53 | protected Class findClass(String name) throws ClassNotFoundException { |
| 54 | try { |
| 55 | return defineClass |
| 56 | (name, read |
| 57 | (LazyLoading.findClass |
| 58 | (name, new File(System.getProperty("user.dir"))))); |
| 59 | } catch (IOException e) { |
| 60 | throw new RuntimeException(e); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | public Class loadClass(String name) throws ClassNotFoundException { |
| 65 | if ("LazyLoading$Test".equals(name)) { |
no test coverage detected