0

Can a spy or verifyCallOf message processors be used on flow-ref? We have a flow as follows:

<flow name="myMainFlow">
    ........
    ........
    <flow-ref name="mySubFlow" />
</flow>

<sub-flow>
    ...
</sub-flow>

I am unable to use spy or verifyCallOf on flow-ref calls. But I am able to use them on the message processors inside sub-flow. Is there a way I can achieve this?

Dds
  • 712
  • 5
  • 7
Arun Rahul
  • 565
  • 1
  • 7
  • 24
  • Can you post your munit code thats trying to verify? You don't spy/verify or mock the `flow-ref` element itself. You need to do it on the flow or sub-flow – Ryan Carter Jul 24 '14 at 10:30