All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fitnesse.testrunner.run.RunCoordinator Maven / Gradle / Ivy

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