This content has been marked as final.
Show 2 replies
-
1. Re: how to make trigger the task form of process in junit
krisverlaenen Jan 11, 2015 7:59 PM (in response to cheirma.rajan)In (simple Java) junit tests in Eclipse you typically don't trigger the forms, but you can simulate them being filled in by calling the complete operation on the task service, and passing the relevant data as part of the results.
If you want to do a full UI junit test, you could connect to the workbench, where your project is deployed, and run through the form that way. Embeddable forms, a new feature in jBPM 6.1, might be useful in this context as well.
Kris
-
2. Re: how to make trigger the task form of process in junit
cheirma.rajan Jan 13, 2015 1:44 PM (in response to krisverlaenen)Thanks kris..