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

fitnesse.testsystems.Descriptor Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy