Is it possible to mock the calls ctx.CallActivity(activity interface{}, opts ...task.callActivityOption) and ctx.CallSubOrchestrator(orchestrator interface{}, opts ...task.subOrchestratorOption) since the task.callActivityOption and task.subOrchestratorOption types are not exportable?
I'm using the mockery tool to generate the mocks.
Is it possible to mock the calls
ctx.CallActivity(activity interface{}, opts ...task.callActivityOption)andctx.CallSubOrchestrator(orchestrator interface{}, opts ...task.subOrchestratorOption)since thetask.callActivityOptionandtask.subOrchestratorOptiontypes are not exportable?I'm using the mockery tool to generate the mocks.