387
388
// GetHistoryTasks mocks base method.
389
>
func (m *MockExecutionManager) GetHistoryTasks(ctx context.Context, request *GetHistoryTasksRequest) (*GetHistoryTasksResponse, error) {
data_interfaces_mock.go
390
>
m.ctrl.T.Helper()
391
>
ret := m.ctrl.Call(m, "GetHistoryTasks", ctx, request)
392
>
ret0, _ := ret[0].(*GetHistoryTasksResponse)
393
>
ret1, _ := ret[1].(error)
394
>
return ret0, ret1
395
>
}
396
397
// GetHistoryTasks indicates an expected call of GetHistoryTasks.
398
>
func (mr *MockExecutionManagerMockRecorder) GetHistoryTasks(ctx, request any) *gomock.Call {
data_interfaces_mock.go
399
>
mr.mock.ctrl.T.Helper()
400
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetHistoryTasks", reflect.TypeOf((*MockExecutionManager)(nil).GetHistoryTasks), ctx, request)
401
>
}
402
403
// GetName mocks base method.