where MyClient is an interface that implements other interfaces from different packages, I would like the generated mocked MyClientMock to be able to call the mocked otherService.ClientMock and anotherService.ClientMock.
I can set it up like this to call the other mocked client:
Please let me know if this is already supported, but I have tried to dig through the issues and PR and find nothing relating to this.
Basically, for the following example use case:
where
MyClient
is an interface that implements other interfaces from different packages, I would like the generated mockedMyClientMock
to be able to call the mockedotherService.ClientMock
andanotherService.ClientMock
.I can set it up like this to call the other mocked client:
But the call stack information for the other mocked clients are not available.