I have a workfow "FirstWorkflow" which is calling "SecondWorkflow" using call activity feature. While testing "FirstWorkflow" I want to mock the call activity call to "SecondWorkflow".I am not finding any solutions for this - Please help
There are many possibilities to do that. Some of them: 1. Hook into process parsing and mock the call activity there. (acitivit-crystalball uses this approach to simulate services calls) 2. mock all service calls in subprocess (org.activiti.standalone.testing.MockSupportWithActivitiTestCaseTest)