For my integration tests, I would like to specify the exact order in the execution paths of a parallel gateway are executed. I don't want to have the parallel paths executed concurrently but sequentially. Is there any way to achieve this with Camunda?
I have already tried to slow down one path by delaying the response of a mocked service call but since the mocked service call is not always used, this solution does not always work.
It would be enough to pause the execution of the one path until the execution of the other path has finished.