Skip to content

Commit

Permalink
test: don't put tasks on top of each other
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Dec 2, 2024
1 parent cebe386 commit 2d67610
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions test/camunda-cloud/task-listeners.bpmn
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_0qh9wc7" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="5.23.0" modeler:userTaskPlatform="Camunda Cloud" modeler:userTaskPlatformVersion="8.0.0">
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zeebe="http://camunda.org/schema/zeebe/1.0" xmlns:modeler="http://camunda.org/schema/modeler/1.0" id="Definitions_0qh9wc7" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="5.30.0-rc.1" modeler:userTaskPlatform="Camunda Cloud" modeler:userTaskPlatformVersion="8.0.0">
<bpmn:process id="TaskListenersTest" name="Task Listeners Test" isExecutable="true">
<bpmn:userTask id="UserTask">
<bpmn:userTask id="UserTask" name="UserTask">
<bpmn:extensionElements>
<zeebe:taskListeners>
<zeebe:taskListener eventType="assignment" retries="2" type="assign_listener" />
</zeebe:taskListeners>
<zeebe:userTask />
</bpmn:extensionElements>
</bpmn:userTask>
<bpmn:userTask id="UserTaskWrongType">
<bpmn:userTask id="UserTaskWrongType" name="UserTaskWrongType">
<bpmn:extensionElements>
<zeebe:taskListeners>
<zeebe:taskListener eventType="wrong" retries="2" type="wrong_listener" />
Expand All @@ -18,7 +18,7 @@
<zeebe:userTask />
</bpmn:extensionElements>
</bpmn:userTask>
<bpmn:userTask id="NonZeebeUserTask">
<bpmn:userTask id="NonZeebeUserTask" name="NonZeebeUserTask">
<bpmn:extensionElements>
<zeebe:taskListeners>
<zeebe:taskListener eventType="complete" retries="2" type="complete_listener" />
Expand All @@ -29,14 +29,17 @@
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="TaskListenersTest">
<bpmndi:BPMNShape id="UserTask_di" bpmnElement="UserTask">
<dc:Bounds x="160" y="400" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="UserTaskWrongType_di" bpmnElement="UserTaskWrongType">
<dc:Bounds x="160" y="400" width="100" height="80" />
<dc:Bounds x="160" y="80" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="NonZeebeUserTask_di" bpmnElement="NonZeebeUserTask">
<dc:Bounds x="160" y="400" width="100" height="80" />
<dc:Bounds x="290" y="80" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="UserTaskWrongType_di" bpmnElement="UserTaskWrongType">
<dc:Bounds x="420" y="80" width="100" height="80" />
<bpmndi:BPMNLabel />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>
</bpmn:definitions>

0 comments on commit 2d67610

Please sign in to comment.