forked from Esri/solutions-geoprocessing-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_all_tests.xml
48 lines (38 loc) · 1.64 KB
/
run_all_tests.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
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0"?>
<project name="solutions-geoprocessing-tool Run Tests" basedir="." default="run_all_subtests">
<!-- templatehome = solutions-geoprocessing-toolbox -->
<target name="run_all_subtests"
depends="test_capability, test_data_management, test_operational_graphics, test_patterns, test_suitability, test_visibility">
<echo message="Running All Tests" />
</target>
<target name="test_capability">
<echo message="Running: test_capability"/>
<ant dir="./capability/test" target="run_all_tests" />
<echo message="Done Test: test_capability"/>
</target>
<target name="test_data_management">
<echo message="Running: test_data_management"/>
<ant dir="./data_management/test" target="run_all_tests" />
<echo message="Done Test: test_data_management"/>
</target>
<target name="test_operational_graphics">
<echo message="Running: test_operational_graphics"/>
<ant dir="./operational_graphics/test" target="run_all_tests" />
<echo message="Done Test: test_operational_graphics"/>
</target>
<target name="test_patterns">
<echo message="Running: test_patterns"/>
<ant dir="./patterns/test" target="run_all_tests" />
<echo message="Done Test: test_patterns"/>
</target>
<target name="test_suitability">
<echo message="Running: test_suitability"/>
<ant dir="./suitability/test" target="run_all_tests" />
<echo message="Done Test: test_suitability"/>
</target>
<target name="test_visibility">
<echo message="Running: test_visibility"/>
<ant dir="./visibility/test" target="run_all_tests" />
<echo message="Done Test: test_visibility"/>
</target>
</project>