Files
homework_4/citrus-tests/src/test/resources/citrus-context.xml
T

24 lines
1.2 KiB
XML

<?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"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.citrusframework.org/schema/config http://www.citrusframework.org/schema/config/citrus-config.xsd
http://www.citrusframework.org/schema/http/config http://www.citrusframework.org/schema/http/config/citrus-http-config.xsd">
<context:property-placeholder location="classpath:citrus.properties"/>
<citrus:global-variables>
<citrus:file path="classpath:citrus.properties"/>
</citrus:global-variables>
<citrus-http:client id="petstoreClient"
request-url="${petstore.base.url}${petstore.base.path}"
timeout="10000"/>
</beans>