Change mock generation for tests
[nonrtric/rapp/orufhrecovery.git] / goversion / mocks / LookupService.go
diff --git a/goversion/mocks/LookupService.go b/goversion/mocks/LookupService.go
deleted file mode 100644 (file)
index 7aab2f7..0000000
+++ /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
-}