telegraf/plugins/inputs/intel_dlb/mock_ras_reader.go

72 lines
1.6 KiB
Go

// Code generated by mockery v2.14.0. DO NOT EDIT.
package intel_dlb
import mock "github.com/stretchr/testify/mock"
// mockRasReader is an autogenerated mock type for the rasReader type
type mockRasReader struct {
mock.Mock
}
// gatherPaths provides a mock function with given fields: path
func (_m *mockRasReader) gatherPaths(path string) ([]string, error) {
ret := _m.Called(path)
var r0 []string
if rf, ok := ret.Get(0).(func(string) []string); ok {
r0 = rf(path)
} 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(path)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// readFromFile provides a mock function with given fields: filePath
func (_m *mockRasReader) readFromFile(filePath string) ([]byte, error) {
ret := _m.Called(filePath)
var r0 []byte
if rf, ok := ret.Get(0).(func(string) []byte); ok {
r0 = rf(filePath)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]byte)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(string) error); ok {
r1 = rf(filePath)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
type mockConstructorTestingTnewMockRasReader interface {
mock.TestingT
Cleanup(func())
}
// newMockRasReader creates a new instance of mockRasReader. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func newMockRasReader(t mockConstructorTestingTnewMockRasReader) *mockRasReader {
mock := &mockRasReader{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}