]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.example/exampleSlcAppli/conf/applicationContext.xml
Integrate Slc Execution notification in the new runtime
[gpl/argeo-slc.git] / org.argeo.slc.example / exampleSlcAppli / conf / applicationContext.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
5
6 <import resource="environments/environments.xml" />
7
8 <import resource="test/testDatas.xml" />
9 <import resource="test/testDefinitions.xml" />
10 <import resource="test/contextTests.xml" />
11
12 <bean id="defaultTestRun"
13 class="org.argeo.slc.core.test.SimpleTestRun" scope="prototype">
14 <property name="testResult" ref="testResult" />
15 <property name="deployedSystem" ref="exampleDeployedSystem" />
16 </bean>
17
18 <bean id="otherTestRun"
19 class="org.argeo.slc.core.test.SimpleTestRun" scope="prototype">
20 <property name="testResult" ref="testResult2" />
21 <property name="deployedSystem" ref="exampleDeployedSystem" />
22 </bean>
23
24
25 </beans>