285
286
// DescribeWorkflowExecution mocks base method.
287
>
func (m *MockHistoryServiceClient) DescribeWorkflowExecution(ctx context.Context, in *historyservice.DescribeWorkflowExecutionRequest, opts ...grpc.CallOption) (*historyservice.DescribeWorkflowExecutionResponse, error) {
service_grpc.pb.mock.go
288
>
m.ctrl.T.Helper()
289
>
varargs := []any{ctx, in}
290
>
for _, a := range opts {
291
varargs = append(varargs, a)
292
}
294
>
ret0, _ := ret[0].(*historyservice.DescribeWorkflowExecutionResponse)
295
>
ret1, _ := ret[1].(error)
296
>
return ret0, ret1
297
}
298
299
// DescribeWorkflowExecution indicates an expected call of DescribeWorkflowExecution.
300
>
func (mr *MockHistoryServiceClientMockRecorder) DescribeWorkflowExecution(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
301
>
mr.mock.ctrl.T.Helper()
302
>
varargs := append([]any{ctx, in}, opts...)
303
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DescribeWorkflowExecution", reflect.TypeOf((*MockHistoryServiceClient)(nil).DescribeWorkflowExecution), varargs...)
304
>
}
305
306
// ExecuteMultiOperation mocks base method.