public interface ITestListener
| Modifier and Type | Interface and Description |
|---|---|
static class |
ITestListener.STATE
List of possible test states.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
void addStandardOutput(java.lang.String text)
text - The stdout data.void addErrorOutput(java.lang.String text)
text - The stderr data.void setState(ITestListener.STATE state)
state - The current test state.