Klasse AntUnitScriptRunner
java.lang.Object
org.apache.ant.antunit.AntUnitScriptRunner
Run antunit tests suites. This AntUnitScriptRunner is responsible for the
management of the ant project and the correct invocation the target (taking
into account properly the [case]setUp and [case]tearDown targets).
The user can however provide the order of the test targets and or can filter
the list of test targets to execute.
The user must also provide its ProjectFactory and an AntUnitExecutionNotifier.
- Seit:
- 1.2
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungAntUnitScriptRunner(ProjectFactory prjFactory) Create a new AntScriptRunner on the given environment. -
Methodenübersicht
Modifikator und TypMethodeBeschreibungfinal org.apache.tools.ant.ProjectGet the project currently in use.getName()Provides the name of the active script.Get the (names of the) test targets to execute.Veraltet.voidrunSuite(List<String> suiteTargets, AntUnitExecutionNotifier notifier) Executes the suite.
-
Konstruktordetails
-
AntUnitScriptRunner
Create a new AntScriptRunner on the given environment.- Parameter:
prjFactory- A factory for the ant project that will contains the antunit test to execute. The factory might be invoked multiple time in order to provide test isolation.- Löst aus:
org.apache.tools.ant.BuildException- The project can not be parsed
-
-
Methodendetails
-
getCurrentProject
public final org.apache.tools.ant.Project getCurrentProject() throws org.apache.tools.ant.BuildExceptionGet the project currently in use. The caller is not allowed to invoke a target or do anything that would break the isolation of the test targets.- Gibt zurück:
- the current project
- Löst aus:
org.apache.tools.ant.BuildException- The project can not be parsed
-
getTestTartgets
Veraltet.- Gibt zurück:
- List<String> List of test targets of the script file
-
getTestTargets
-
getName
-
runSuite
Executes the suite.- Parameter:
suiteTargets- An ordered list of test targets. It must be a sublist of getTestTargetsnotifier- is notified on test progress
-