diff options
author | Max Benjamin <max.benjamin@att.com> | 2019-12-11 18:09:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-12-11 18:09:20 +0000 |
commit | 02c068ce771ee4522936f2d15f41c2b631e965a8 (patch) | |
tree | 31c0b733ea40e5e575ae17271a46841e72386378 /so-simulator/src/test/resources/citrus-context.xml | |
parent | 6acf5b81168724ca4c889daf9b9cfcc5100e02e1 (diff) | |
parent | 6514e3bded45ec57f5157afc6d2833fb4e40f271 (diff) |
Merge "Add so-simulator project"Java-11-upgrade1212master
Diffstat (limited to 'so-simulator/src/test/resources/citrus-context.xml')
-rw-r--r-- | so-simulator/src/test/resources/citrus-context.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/so-simulator/src/test/resources/citrus-context.xml b/so-simulator/src/test/resources/citrus-context.xml new file mode 100644 index 0000000000..f491dbcb7e --- /dev/null +++ b/so-simulator/src/test/resources/citrus-context.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<beans xmlns="http://www.springframework.org/schema/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:citrus="http://www.citrusframework.org/schema/config" + xmlns:citrus-http="http://www.citrusframework.org/schema/http/config" + xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd + + http://www.citrusframework.org/schema/http/config http://www.citrusframework.org/schema/http/config/citrus-http-config.xsd + http://www.citrusframework.org/schema/config http://www.citrusframework.org/schema/config/citrus-config.xsd"> + + <citrus:schema-repository id="schemaRepository"> + <citrus:locations> + <citrus:location path="classpath:xsd/HelloService.xsd"/> + </citrus:locations> + </citrus:schema-repository> + + <!-- Test Http REST client --> + <citrus-http:client + id="simulatorClient" + request-url="http://localhost:8080/services/rest/simulator" + timeout="5000"/> + +</beans>
\ No newline at end of file |