ch.sf.htt
Interface ITestListener

All Known Implementing Classes:
TestReportListener

public interface ITestListener

Interface for listeners for test status and output.


Nested Class Summary
static class ITestListener.STATE
          List of possible test states.
 
Method Summary
 void addErrorOutput(java.lang.String text)
          More standard error data is received.
 void addStandardOutput(java.lang.String text)
          More standard output data is received.
 void setState(ITestListener.STATE state)
          Updates the state of the test.
 

Method Detail

addStandardOutput

void addStandardOutput(java.lang.String text)
More standard output data is received.

Parameters:
text - The stdout data.

addErrorOutput

void addErrorOutput(java.lang.String text)
More standard error data is received.

Parameters:
text - The stderr data.

setState

void setState(ITestListener.STATE state)
Updates the state of the test.

Parameters:
state - The current test state.