(Object target, String methodName, Object[] args)
| 95 | } |
| 96 | |
| 97 | public static Object invokeInstanceMethod(Object target, String methodName, Object[] args) { |
| 98 | return invokeInstanceMethodOfClass(target, target.getClass(), methodName, args); |
| 99 | } |
| 100 | |
| 101 | public static Object invokeInstanceMethodOfClass(Object target, Class c, String methodName, Object[] args) { |
| 102 | List methods = getMethods(c, args.length, methodName, false).stream() |
no test coverage detected