(Object proxy, Method method, Object... args)
| 49 | ClassLoader loader = Annotations.class.getClassLoader(); |
| 50 | InvocationHandler handler = new InvocationHandler() { |
| 51 | public Object invoke(Object proxy, Method method, Object... args) { |
| 52 | return method.getDefaultValue(); |
| 53 | } |
| 54 | }; |
| 55 | Test test = (Test) |
| 56 | Proxy.newProxyInstance(loader, new Class[] { Test.class }, handler); |
nothing calls this directly
no test coverage detected