Setting in Parameters

Simple Type

<test name="invoke_param_in_1">
		<flow>flow1</flow>
		<description>Test operation with an object created by the user as parameter</description>
		<expect mod="port1">
			<so orderId="1"/>
		</expect>
		<action>
			<create object="1" type="sodata::ServiceOrderData">
				<attr name="orderId" value="invoke_param_in_1@@1">
			</create>
			<invoke object="1" operation="setPriority">
				<in name="priority" value="1"/>
			</invoke>
		</action>
	</test>

Objects

<test name="test_invoke_param_in_2">
		<flow>flow1</flow>
		<description>Test operation with simple in parameter</description>
		<action>
			<createSo orderId="1"/>
			<invoke object="getSo" operation="onPut">
				<in name="msg" object="1"/>
			</invoke>
		</action>
	</test>