fitnesse.testsystems.Descriptor 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!
package fitnesse.testsystems;
/**
* Configuration for a test system.
*/
public interface Descriptor {
String getTestSystem();
String getTestSystemType();
ClassPath getClassPath();
boolean runInProcess();
boolean isDebug();
// Generic entry point for everything the test system needs to know.
String getVariable(String name);
ExecutionLogListener getExecutionLogListener();
}