- Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathtest-logbox.xml
executable file
·38 lines (31 loc) · 1.52 KB
/
test-logbox.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0"?>
<!--
This ANT build can be used to execute your tests with automation using our included runner.cfm.
You can executes directories, bundles and so much more. It can also produce JUnit reports using the
ANT junitreport tag. This is meant to be a template for you to spice up.
There are two targets you can use: run and run-junit
Execute the default 'run' target
ant -f test.xml
OR
ant -f test.xml run
Execute the 'run-junit' target
ant -f test.xml run-junit
PLEASE NOTE THAT YOU MUST ALTER THE RUNNER'S URL ACCORDING TO YOUR ENVIRONMENT.
-->
<projectname="logbox-testbox-runner"default="run"basedir=".">
<!-- FILL OUT THE BUNDLES TO TEST, CAN BE A LIST OF CFC PATHS -->
<propertyname="test.bundles" value="" />
<!-- FILL OUT THE DIRECTORY MAPPING TO TEST -->
<propertyname="test.directory" value="tests.specs.logging" />
<!-- FILL OUT IF YOU WANT THE DIRECTORY RUNNER TO RECURSE OR NOT -->
<propertyname="test.recurse" value="true" />
<!-- FILL OUT THE LABELS YOU WANT TO APPLY TO THE TESTS -->
<propertyname="test.labels" value="" />
<!-- FILL OUT THE TEST REPORTER YOU WANT, AVAILABLE REPORTERS ARE: ANTJunit, Codexwiki, console, dot, doc, json, junit, min, raw, simple, tap, text, xml -->
<propertyname="test.reporter" value="text" />
<!-- FILL OUT WHERE REPORTING RESULTS ARE STORED -->
<propertyname="report.dir" value="${basedir}/results-logbox" />
<propertyname="junitreport.dir" value="${report.dir}/junitreport" />
<!-- Import Test File -->
<importfile="base-test.xml"/>
</project>