Author: manaRH
Date: 2011-02-16 10:47:09 -0500 (Wed, 16 Feb 2011)
New Revision: 14052
Added:
branches/enterprise/JBPAPP_5_0/src/test/integration/resources/testProcess6.jpdl.xml
Log:
JBPAPP-5517 - forgot to add jbpm definition for integration test
Added:
branches/enterprise/JBPAPP_5_0/src/test/integration/resources/testProcess6.jpdl.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/src/test/integration/resources/testProcess6.jpdl.xml
(rev 0)
+++
branches/enterprise/JBPAPP_5_0/src/test/integration/resources/testProcess6.jpdl.xml 2011-02-16
15:47:09 UTC (rev 14052)
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+
+<process-definition
+ name="TestProcess6"
+ xmlns="urn:jbpm.org:jpdl-3.2"
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="urn:jbpm.org:jpdl-3.2
http://jbpm.org/xsd/jpdl-3.2.xsd"
+ >
+
+ <start-state name="start">
+ <transition to="process"/>
+ </start-state>
+
+ <task-node name="process" >
+ <transition name="shipped" to="problem">
+ <action
expression="#{seamExpressionEvaluatorTestController.log}"/>
+ </transition>
+ <transition name="cancel" to="cancelled"/>
+ </task-node>
+
+ <state name="problem">
+ <event type="node-enter">
+ <action
expression="#{seamExpressionEvaluatorTestController.asyncExceptionThrowing}"
/>
+ </event>
+ <transition to="complete" />
+ </state>
+
+ <end-state name="complete"/>
+ <end-state name="cancelled"/>
+
+</process-definition>