505
506
// GetWorkflowExecutionHistory mocks base method.
507
>
func (m *MockHistoryServiceClient) GetWorkflowExecutionHistory(ctx context.Context, in *historyservice.GetWorkflowExecutionHistoryRequest, opts ...grpc.CallOption) (*historyservice.GetWorkflowExecutionHistoryResponse, error) {
service_grpc.pb.mock.go
508
>
m.ctrl.T.Helper()
509
>
varargs := []any{ctx, in}
510
>
for _, a := range opts {
511
varargs = append(varargs, a)
512
}
514
>
ret0, _ := ret[0].(*historyservice.GetWorkflowExecutionHistoryResponse)
515
>
ret1, _ := ret[1].(error)
516
>
return ret0, ret1
517
}
518
519
// GetWorkflowExecutionHistory indicates an expected call of GetWorkflowExecutionHistory.
520
>
func (mr *MockHistoryServiceClientMockRecorder) GetWorkflowExecutionHistory(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
521
>
mr.mock.ctrl.T.Helper()
522
>
varargs := append([]any{ctx, in}, opts...)
523
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetWorkflowExecutionHistory", reflect.TypeOf((*MockHistoryServiceClient)(nil).GetWorkflowExecutionHistory), varargs...)
524
>
}
525
526
// GetWorkflowExecutionHistoryReverse mocks base method.