75
75
import org .jbpm .process .instance .impl .demo .SystemOutWorkItemHandler ;
76
76
import org .jbpm .test .util .NodeLeftCountDownProcessEventListener ;
77
77
import org .jbpm .test .util .ProcessCompletedCountDownProcessEventListener ;
78
+ import org .jbpm .test .utils .EventTrackerProcessListener ;
78
79
import org .jbpm .test .utils .ProcessTestHelper ;
79
80
import org .jbpm .test .utils .ProcessTestHelper .CompletionKogitoEventListener ;
80
81
import org .junit .jupiter .api .Disabled ;
@@ -137,7 +138,7 @@ public void beforeNodeTriggered(ProcessNodeTriggeredEvent event) {
137
138
@ Test
138
139
public void testBoundaryTimerCycleISO () {
139
140
Application app = ProcessTestHelper .newApplication ();
140
- NodeLeftCountDownProcessEventListener listener = new NodeLeftCountDownProcessEventListener ("Send Update" , 3 );
141
+ NodeLeftCountDownProcessEventListener listener = new NodeLeftCountDownProcessEventListener ("Send Update Timer " , 3 );
141
142
ProcessTestHelper .registerProcessEventListener (app , listener );
142
143
org .kie .kogito .process .Process <BoundaryTimerCycleISOModel > definition = BoundaryTimerCycleISOProcess .newProcess (app );
143
144
org .kie .kogito .process .ProcessInstance <BoundaryTimerCycleISOModel > instance = definition .createInstance (definition .createModel ());
@@ -150,7 +151,7 @@ public void testBoundaryTimerCycleISO() {
150
151
@ Test
151
152
public void testBoundaryTimerCycleISOVariable () {
152
153
Application app = ProcessTestHelper .newApplication ();
153
- NodeLeftCountDownProcessEventListener listener = new NodeLeftCountDownProcessEventListener ("Send Update" , 3 );
154
+ NodeLeftCountDownProcessEventListener listener = new NodeLeftCountDownProcessEventListener ("Send Update Timer " , 3 );
154
155
ProcessTestHelper .registerProcessEventListener (app , listener );
155
156
org .kie .kogito .process .Process <BoundaryTimerCycleISOVariableModel > definition = BoundaryTimerCycleISOVariableProcess .newProcess (app );
156
157
BoundaryTimerCycleISOVariableModel model = definition .createModel ();
0 commit comments