
fitnesse.testrunner.run.RunCoordinator 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.testrunner.run;
import fitnesse.testrunner.WikiPageIdentity;
import fitnesse.testsystems.TestPage;
import fitnesse.testsystems.TestSystem;
import fitnesse.testsystems.slim.TestingInterruptedException;
import java.util.List;
public interface RunCoordinator {
boolean isNotStopped();
void announceTotalTestsToRun(int toRun);
TestSystem startTestSystem(WikiPageIdentity identity, List testPages);
int announceTestStarted();
void waitForNoTestsInProgress() throws TestingInterruptedException;
void reportException(Exception e);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy