Updates license references
[nonrtric/rapp/orufhrecovery.git] / goversion / mocks / CsvFileHelper.go
1 // -
2 //   ========================LICENSE_START=================================
3 //   O-RAN-SC
4 //   %%
5 //   Copyright (C) 2021-2022: Nordix Foundation
6 //   %%
7 //   Licensed under the Apache License, Version 2.0 (the "License");
8 //   you may not use this file except in compliance with the License.
9 //   You may obtain a copy of the License at
10 //
11 //        http://www.apache.org/licenses/LICENSE-2.0
12 //
13 //   Unless required by applicable law or agreed to in writing, software
14 //   distributed under the License is distributed on an "AS IS" BASIS,
15 //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 //   See the License for the specific language governing permissions and
17 //   limitations under the License.
18 //   ========================LICENSE_END===================================
19 //
20
21 // Code generated by mockery v1.0.0. DO NOT EDIT.
22
23 package mocks
24
25 import mock "github.com/stretchr/testify/mock"
26
27 // CsvFileHelper is an autogenerated mock type for the CsvFileHelper type
28 type CsvFileHelper struct {
29         mock.Mock
30 }
31
32 // GetCsvFromFile provides a mock function with given fields: name
33 func (_m *CsvFileHelper) GetCsvFromFile(name string) ([][]string, error) {
34         ret := _m.Called(name)
35
36         var r0 [][]string
37         if rf, ok := ret.Get(0).(func(string) [][]string); ok {
38                 r0 = rf(name)
39         } else {
40                 if ret.Get(0) != nil {
41                         r0 = ret.Get(0).([][]string)
42                 }
43         }
44
45         var r1 error
46         if rf, ok := ret.Get(1).(func(string) error); ok {
47                 r1 = rf(name)
48         } else {
49                 r1 = ret.Error(1)
50         }
51
52         return r0, r1
53 }