// Code generated by MockGen. DO NOT EDIT. // Source: github.com/qdm12/gluetun/internal/storage (interfaces: InfoErrorer) // Package storage is a generated GoMock package. package storage import ( reflect "reflect" gomock "github.com/golang/mock/gomock" ) // MockInfoErrorer is a mock of InfoErrorer interface. type MockInfoErrorer struct { ctrl *gomock.Controller recorder *MockInfoErrorerMockRecorder } // MockInfoErrorerMockRecorder is the mock recorder for MockInfoErrorer. type MockInfoErrorerMockRecorder struct { mock *MockInfoErrorer } // NewMockInfoErrorer creates a new mock instance. func NewMockInfoErrorer(ctrl *gomock.Controller) *MockInfoErrorer { mock := &MockInfoErrorer{ctrl: ctrl} mock.recorder = &MockInfoErrorerMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockInfoErrorer) EXPECT() *MockInfoErrorerMockRecorder { return m.recorder } // Info mocks base method. func (m *MockInfoErrorer) Info(arg0 string) { m.ctrl.T.Helper() m.ctrl.Call(m, "Info", arg0) } // Info indicates an expected call of Info. func (mr *MockInfoErrorerMockRecorder) Info(arg0 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Info", reflect.TypeOf((*MockInfoErrorer)(nil).Info), arg0) }