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

fitnesse.testsystems.ExecutionLog Maven / Gradle / Ivy

There is a newer version: 20240707
Show newest version
package fitnesse.testsystems;

import java.util.List;

/**
 * Created with IntelliJ IDEA.
 * User: arjan
 * Date: 6/29/13
 * Time: 9:18 PM
 * To change this template use File | Settings | File Templates.
 */
public interface ExecutionLog {
  void addException(Throwable e);

  List getExceptions();

  String getCommand();

  long getExecutionTime();

  int getExitCode();

  String getCapturedOutput();

  String getCapturedError();

  boolean hasCapturedOutput();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy