219
220
// DescribeWorkflowExecution mocks base method.
221
>
func (m *MockClient) DescribeWorkflowExecution(ctx context.Context, workflowID, runID string) (*workflowservice.DescribeWorkflowExecutionResponse, error) {
client_mock.go
222
>
m.ctrl.T.Helper()
223
>
ret := m.ctrl.Call(m, "DescribeWorkflowExecution", ctx, workflowID, runID)
224
>
ret0, _ := ret[0].(*workflowservice.DescribeWorkflowExecutionResponse)
225
>
ret1, _ := ret[1].(error)
226
>
return ret0, ret1
227
>
}
228
229
// DescribeWorkflowExecution indicates an expected call of DescribeWorkflowExecution.
230
>
func (mr *MockClientMockRecorder) DescribeWorkflowExecution(ctx, workflowID, runID any) *gomock.Call {
client_mock.go
231
>
mr.mock.ctrl.T.Helper()
232
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DescribeWorkflowExecution", reflect.TypeOf((*MockClient)(nil).DescribeWorkflowExecution), ctx, workflowID, runID)
233
>
}
234
235
// ExecuteActivity mocks base method.