]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.example/exampleSlcAppli/root/Category1/SubCategory2/build.xml
Try to release 0.5.2 with Maven...
[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 <target name="test" depends="testSimple,testComplex,testError">
5 <slc.closeResult result="testResult" />
6 <slc.closeResult result="testResult2" />
7 <slc.report report="report" />
8 </target>
9
10 <target name="testSimple" description="Simple tests">
11 <slc.test description="NATO">
12 <testDefinition bean="simpleExampleTestDef" />
13 <testData bean="testData.nato" />
14 </slc.test>
15
16 <slc.test description="UN">
17 <testDefinition bean="simpleExampleTestDef" />
18 <testData bean="testData.un" />
19 </slc.test>
20
21 <slc.test description="EU-reform" testRun="otherTestRun">
22 <testDefinition bean="simpleExampleTestDef" />
23 <testData bean="testData.eu-reform" />
24 </slc.test>
25
26 <slc.test description="Distinct test">
27 <testDefinition bean="simpleExampleTestDef" />
28 <testData bean="testData.eu-reform" />
29 <deployedSystem bean="exampleDeployedSystem2" />
30 <testResult bean="testResult2" />
31 </slc.test>
32
33 </target>
34
35 <target name="testComplex" description="A complex test">
36 <slc.test description="Complex test">
37 <testDefinition bean="complexExampleTestDef" />
38 <testData bean="testData.un" />
39 </slc.test>
40 <slc.test description="Complex overridden">
41 <testDefinition bean="complexExampleTestDef">
42 <override name="tasks">
43 <list>
44 <override bean="dummyTask" />
45 </list>
46 </override>
47 </testDefinition>
48 <testData bean="testData.un" />
49 </slc.test>
50 </target>
51
52 <target name="testError" description="A crashing test">
53 <slc.test description="UN crashing">
54 <testDefinition bean="simpleExampleTestDef" />
55 <testData bean="testData.un.bad" />
56 </slc.test>
57 </target>
58
59 </project>