fitnesse.testsystems.TestResult 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.testsystems;
import java.util.Map;
public interface TestResult {
boolean doesCount();
boolean hasActual();
String getActual();
boolean hasExpected();
String getExpected();
boolean hasMessage();
String getMessage();
ExecutionResult getExecutionResult();
Map getVariablesToStore();
}