public class LogForwarder extends Object implements AntUnitListener
Constructor and Description |
---|
LogForwarder() |
Modifier and Type | Method and Description |
---|---|
void |
addError(String target,
Throwable ae)
Invoked if any error other than a failed assertion occured
during execution.
|
void |
addFailure(String target,
AssertionFailedException ae)
Invoked if an assert tasked caused an error during execution.
|
void |
endTest(String target)
Invoked after a test target has been executed.
|
void |
endTestSuite(org.apache.tools.ant.Project testProject,
String buildFile)
Invoked once per build file, after all targets have been executed.
|
void |
setCurrentTestProject(org.apache.tools.ant.Project p)
Set a reference to the Project instance currently executing the
test target.
|
void |
setParentTask(org.apache.tools.ant.Task t)
Set a reference to the AntUnit task executing the tests, this
provides access to the containing project, target or Ant's
logging system.
|
void |
startTest(String target)
Invoked before a test target gets executed.
|
void |
startTestSuite(org.apache.tools.ant.Project testProject,
String buildFile)
Invoked once per build file, before any targets get executed.
|
public void setParentTask(org.apache.tools.ant.Task t)
AntUnitListener
setParentTask
in interface AntUnitListener
t
- the parent taskpublic void setCurrentTestProject(org.apache.tools.ant.Project p)
AntUnitListener
This provides access to the logging system or the properties of the project under test. Note that different test targets will be executed in different Ant Project instances.
setCurrentTestProject
in interface AntUnitListener
p
- the test projectpublic void startTestSuite(org.apache.tools.ant.Project testProject, String buildFile)
AntUnitListener
startTestSuite
in interface AntUnitListener
testProject
- the projectbuildFile
- the build filepublic void endTestSuite(org.apache.tools.ant.Project testProject, String buildFile)
AntUnitListener
endTestSuite
in interface AntUnitListener
testProject
- the projectbuildFile
- the build filepublic void startTest(String target)
AntUnitListener
startTest
in interface AntUnitListener
target
- name of the targetpublic void endTest(String target)
AntUnitListener
endTest
in interface AntUnitListener
target
- name of the targetpublic void addFailure(String target, AssertionFailedException ae)
AntUnitListener
addFailure
in interface AntUnitListener
target
- name of the targetae
- the failurepublic void addError(String target, Throwable ae)
AntUnitListener
addError
in interface AntUnitListener
target
- name of the targetae
- the errorCopyright © 2023 The Apache Software Foundation. All rights reserved.