Method method = Target.class.getMethod("someMethod", new Class[] { String.class });
MethodCall methodCall = new MethodCall(method, new Object[] {"abc"});
Target target = new Target();
Object result = methodCall.invoke(target);
assertEquals("ABC", result);
}
public void testInheritanceMETHOD() throws Throwable {