X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=goversion%2Fmocks%2FLookupService.go;fp=goversion%2Fmocks%2FLookupService.go;h=0000000000000000000000000000000000000000;hb=0446ebd7036916597c9c9fbdb8240647a879ac6b;hp=7aab2f7873c37cd1a8ce234ce01982303bb5f9e9;hpb=26f1d4c8ba8e7332ace26d0be373935007f3b223;p=nonrtric%2Frapp%2Forufhrecovery.git diff --git a/goversion/mocks/LookupService.go b/goversion/mocks/LookupService.go deleted file mode 100644 index 7aab2f7..0000000 --- a/goversion/mocks/LookupService.go +++ /dev/null @@ -1,65 +0,0 @@ -// - -// ========================LICENSE_START================================= -// O-RAN-SC -// %% -// Copyright (C) 2021-2022: Nordix Foundation -// %% -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ========================LICENSE_END=================================== -// - -// Code generated by mockery v1.0.0. DO NOT EDIT. - -package mocks - -import mock "github.com/stretchr/testify/mock" - -// LookupService is an autogenerated mock type for the LookupService type -type LookupService struct { - mock.Mock -} - -// GetODuID provides a mock function with given fields: oRuId -func (_m *LookupService) GetODuID(oRuId string) (string, error) { - ret := _m.Called(oRuId) - - var r0 string - if rf, ok := ret.Get(0).(func(string) string); ok { - r0 = rf(oRuId) - } else { - r0 = ret.Get(0).(string) - } - - var r1 error - if rf, ok := ret.Get(1).(func(string) error); ok { - r1 = rf(oRuId) - } else { - r1 = ret.Error(1) - } - - return r0, r1 -} - -// Init provides a mock function with given fields: -func (_m *LookupService) Init() error { - ret := _m.Called() - - var r0 error - if rf, ok := ret.Get(0).(func() error); ok { - r0 = rf() - } else { - r0 = ret.Error(0) - } - - return r0 -}