824
825
// GetWorkflowExecutionHistory mocks base method.
826
>
func (m *MockWorkflowServiceClient) GetWorkflowExecutionHistory(ctx context.Context, in *workflowservice.GetWorkflowExecutionHistoryRequest, opts ...grpc.CallOption) (*workflowservice.GetWorkflowExecutionHistoryResponse, error) {
service_grpc.pb.mock.go
827
>
m.ctrl.T.Helper()
828
>
varargs := []any{ctx, in}
829
>
for _, a := range opts {
830
varargs = append(varargs, a)
831
}
833
>
ret0, _ := ret[0].(*workflowservice.GetWorkflowExecutionHistoryResponse)
834
>
ret1, _ := ret[1].(error)
835
>
return ret0, ret1
836
}
837
838
// GetWorkflowExecutionHistory indicates an expected call of GetWorkflowExecutionHistory.
839
>
func (mr *MockWorkflowServiceClientMockRecorder) GetWorkflowExecutionHistory(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
840
>
mr.mock.ctrl.T.Helper()
841
>
varargs := append([]any{ctx, in}, opts...)
842
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetWorkflowExecutionHistory", reflect.TypeOf((*MockWorkflowServiceClient)(nil).GetWorkflowExecutionHistory), varargs...)
843
>
}
844
845
// GetWorkflowExecutionHistoryReverse mocks base method.