Hi All,
We have a case here where we need to spawn multiple sub processes and then wait for getting messages from all of them. This was working fine until the sub processes started notifying the main process at the same time.
We tried to solve this by spawning multiple sub process (one each for every sub process) that would wait to hear back from each of the sub process. This is working fine. But we have an issue when running this from the Camunda Unit Tests. We have attached Unit Tests that reproduces this issue.
We believe this is because the Junit Framework runs single threaded. We also noticed that running with async property enabled also has the same issue. Is there some way to get this running in the Unit Tests?