diff options
author | Thomas <thomas.lenz@egiz.gv.at> | 2019-10-18 10:51:32 +0200 |
---|---|---|
committer | Thomas <thomas.lenz@egiz.gv.at> | 2019-10-18 10:51:32 +0200 |
commit | 36c937aec7cb71a4520078d5c2337ce5ff4b2292 (patch) | |
tree | 2deff63d65dc5d9c4a1c9bc4f7efaceeafddb91e /eaaf_core/src/test/resources | |
parent | ef6b8445fd344501bc767c4d73d3ce9de4a8b9ee (diff) | |
download | EAAF-Components-36c937aec7cb71a4520078d5c2337ce5ff4b2292.tar.gz EAAF-Components-36c937aec7cb71a4520078d5c2337ce5ff4b2292.tar.bz2 EAAF-Components-36c937aec7cb71a4520078d5c2337ce5ff4b2292.zip |
add jUnit test for process-definition post-validation
Diffstat (limited to 'eaaf_core/src/test/resources')
-rw-r--r-- | eaaf_core/src/test/resources/process/test/SampleProcessDefinition3.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/eaaf_core/src/test/resources/process/test/SampleProcessDefinition3.xml b/eaaf_core/src/test/resources/process/test/SampleProcessDefinition3.xml new file mode 100644 index 00000000..ef6999cf --- /dev/null +++ b/eaaf_core/src/test/resources/process/test/SampleProcessDefinition3.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + --> + +<tns:ProcessDefinition + id="SampleProcess3" + xmlns:tns="http://reference.e-government.gv.at/namespace/moa/process/definition/v1" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://reference.e-government.gv.at/namespace/moa/process/definition/v1 ../../main/resources/process/ProcessDefinition.xsd "> + + <tns:StartEvent id="start" /> + + <tns:Task id="task1" class="NotExistTaskdTask" /> + <tns:Task id="task2" async="true" class="HelloWorldTask" /> + <tns:Task id="task3" /> + + <tns:EndEvent id="end" /> + + <tns:Transition id="fromStart" from="start" to="task1" conditionExpression="true" /> + <tns:Transition from="task1" to="task2" /> + <tns:Transition from="task2" to="task3" /> + <tns:Transition from="task3" to="end" /> + +</tns:ProcessDefinition> |