fitnesse.slim.instructions.InstructionExecutor 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.
package fitnesse.slim.instructions;
import fitnesse.slim.SlimException;
public interface InstructionExecutor {
void assign(String name, Object value);
void addPath(String path) throws SlimException;
void create(String instanceName, String className, Object... constructorArgs) throws SlimException;
Object callAndAssign(String symbolName, String instanceName, String methodsName, Object... arguments) throws SlimException;
Object call(String instanceName, String methodName, Object... arguments) throws SlimException;
}