Skip to content

Commit

Permalink
improved parallel gateway test code
Browse files Browse the repository at this point in the history
  • Loading branch information
tombaeyens committed Jun 21, 2010
1 parent c732ccb commit 5f8ac4d
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,11 @@ public void testUnbalancedForkJoin() {
//
// // Completing the second task should trigger the join
// taskService.complete(tasks.get(1).getId());
// tasks = query.list();
// assertEquals(2, tasks.size());
// assertEquals("Task 4", tasks.get(1));
//
// assertEquals(1, query.count());
//
// taskService.complete(tasks.get(2).getId());
//
// // Completing the remaing tasks should trigger the second join and end the process
// for (Task t : tasks) {
// taskService.complete(t.getId());
// }
// assertProcessInstanceEnded(pi.getId());
}

Expand Down

0 comments on commit 5f8ac4d

Please sign in to comment.