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

fitnesse.testsystems.ExecutionLogListener Maven / Gradle / Ivy

package fitnesse.testsystems;

public interface ExecutionLogListener {

  void commandStarted(ExecutionContext context);

  void stdOut(String output);

  void stdErr(String output);

  void exitCode(int exitCode);

  void exceptionOccurred(Throwable e);

  interface ExecutionContext {

    String getCommand();

    String getTestSystemName();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy