]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.example/exampleSlcAppli/root/Category1/SubCategory2/build.xml
SLC v0.7.2
[gpl/argeo-slc.git] / org.argeo.slc.example / exampleSlcAppli / root / Category1 / SubCategory2 / build.xml
1 <project default="test" name="testProject">
2 <description>A Test project</description>
3
4 <import file="complex.xml"/>
5
6 <target name="test" depends="testSimple,testComplex,testError">
7 <slc.closeResult result="testResult" />
8 <slc.closeResult result="testResult2" />
9 <slc.report report="report" />
10 </target>
11
12 <target name="testSimple" description="Simple tests">
13 <slc.test description="NATO">
14 <testDefinition bean="simpleExampleTestDef" />
15 <testData bean="testData.nato" />
16 <structureElement bean="sElement.nato"/>
17 </slc.test>
18
19 <slc.test description="UN">
20 <testDefinition bean="simpleExampleTestDef" />
21 <testData bean="testData.un" />
22 </slc.test>
23
24 <slc.test description="EU-reform" testRun="otherTestRun">
25 <testDefinition bean="simpleExampleTestDef" />
26 <testData bean="testData.eu-reform" />
27 </slc.test>
28
29 <slc.test description="Distinct test">
30 <testDefinition bean="simpleExampleTestDef" />
31 <testData bean="testData.eu-reform" />
32 <deployedSystem bean="exampleDeployedSystem2" />
33 <testResult bean="testResult2" />
34 </slc.test>
35
36 </target>
37
38 <target name="testError" description="A crashing test">
39 <slc.test description="UN crashing">
40 <testDefinition bean="simpleExampleTestDef" />
41 <testData bean="testData.un.bad" />
42 </slc.test>
43 </target>
44
45 </project>