Change mock generation for tests
[nonrtric/rapp/orufhrecovery.git] / goversion / mocks / CsvFileHelper.go
diff --git a/goversion/mocks/CsvFileHelper.go b/goversion/mocks/CsvFileHelper.go
deleted file mode 100644 (file)
index 4cc8504..0000000
+++ /dev/null
@@ -1,53 +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"
-
-// CsvFileHelper is an autogenerated mock type for the CsvFileHelper type
-type CsvFileHelper struct {
-       mock.Mock
-}
-
-// GetCsvFromFile provides a mock function with given fields: name
-func (_m *CsvFileHelper) GetCsvFromFile(name string) ([][]string, error) {
-       ret := _m.Called(name)
-
-       var r0 [][]string
-       if rf, ok := ret.Get(0).(func(string) [][]string); ok {
-               r0 = rf(name)
-       } else {
-               if ret.Get(0) != nil {
-                       r0 = ret.Get(0).([][]string)
-               }
-       }
-
-       var r1 error
-       if rf, ok := ret.Get(1).(func(string) error); ok {
-               r1 = rf(name)
-       } else {
-               r1 = ret.Error(1)
-       }
-
-       return r0, r1
-}