static MethodExecutionStrategy |
MethodExecutionStrategy.byArgumentTypes(java.lang.Class<?> clazz,
java.lang.String methodName,
java.lang.Class<?>[] argumentTypes,
java.lang.Object... arguments) |
Creates a MethodExecutionStrategy that will call the public method with the
specified argument types and passes the specified argument list.
|
static MethodExecutionStrategy |
MethodExecutionStrategy.byMainMethod(java.lang.Class<?> clazz,
java.lang.String... arguments) |
Creates a MethodExecutionStrategy that will call the public static void main(String[] args)
with the specified arguments.
|
static MethodExecutionStrategy |
MethodExecutionStrategy.byMatchingArguments(java.lang.Class<?> clazz,
java.lang.String methodName,
java.lang.Object... arguments) |
|
static MethodExecutionStrategy |
MethodExecutionStrategy.byMethod(java.lang.reflect.Method method,
java.lang.Object... arguments) |
|