Home | History | Annotate | Download | only in src

Lines Matching refs:Method

18 import java.lang.reflect.Method;
197 Method[] methods = c.getDeclaredMethods();
200 // will give us the method we need to run.
201 Method method = null;
202 for (Method m : methods) {
204 method = m;
209 if (method == null) {
210 errorReturn = new IllegalArgumentException("Could not find test method " +
216 if (Modifier.isStatic(method.getModifiers())) {
217 retValue = method.invoke(null, tc.values);
219 retValue = method.invoke(method.getDeclaringClass().newInstance(), tc.values);