fitnesse.slim.SlimFactory 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;
public abstract class SlimFactory {
public abstract NameTranslator getMethodNameTranslator();
public abstract boolean isVerbose();
public SlimServer getSlimServer() {
return new SlimServer(this);
}
public ListExecutor getListExecutor() {
return new ListExecutor(isVerbose(), this);
}
public abstract StatementExecutorInterface getStatementExecutor();
public void stop() {
}
}