public interface AntUnitExecutionNotifier
Modifier and Type | Method and Description |
---|---|
void |
fireEndTest(java.lang.String targetName)
invokes endTest on all registered test listeners.
|
void |
fireError(java.lang.String targetName,
java.lang.Throwable t)
invokes addError on all registered test listeners.
|
void |
fireFail(java.lang.String targetName,
AssertionFailedException ae)
invokes addFailure on all registered test listeners.
|
void |
fireStartTest(java.lang.String targetName)
invokes start on all registered test listeners.
|
void fireStartTest(java.lang.String targetName)
targetName
- the name of the target.void fireFail(java.lang.String targetName, AssertionFailedException ae)
targetName
- the name of the failed target.ae
- the associated AssertionFailedException.void fireError(java.lang.String targetName, java.lang.Throwable t)
targetName
- the name of the failed target.t
- the associated Throwable.void fireEndTest(java.lang.String targetName)
targetName
- the name of the current target.