fitnesse.slim.fixtureInteraction.FixtureInteraction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
The newest version!
// Released under the terms of the CPL Common Public License version 1.0.
package fitnesse.slim.fixtureInteraction;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.List;
import fitnesse.slim.MethodExecutionResult;
public interface FixtureInteraction {
Object createInstance(List paths, String className, Object[] args)
throws IllegalArgumentException, InstantiationException,
IllegalAccessException, InvocationTargetException;
MethodExecutionResult findAndInvoke(String method, Object instance, Object... args) throws Throwable;
Object methodInvoke(Method method, Object instance, Object... args) throws Throwable;
}