// Code generated by MockGen. DO NOT EDIT. // Source: edge-infra.dev/pkg/edge/api/services (interfaces: CABundleService) // Package mocks is a generated GoMock package. package mocks import ( context "context" reflect "reflect" model "edge-infra.dev/pkg/edge/api/graph/model" gomock "github.com/golang/mock/gomock" ) // MockCABundleService is a mock of CABundleService interface. type MockCABundleService struct { ctrl *gomock.Controller recorder *MockCABundleServiceMockRecorder } // MockCABundleServiceMockRecorder is the mock recorder for MockCABundleService. type MockCABundleServiceMockRecorder struct { mock *MockCABundleService } // NewMockCABundleService creates a new mock instance. func NewMockCABundleService(ctrl *gomock.Controller) *MockCABundleService { mock := &MockCABundleService{ctrl: ctrl} mock.recorder = &MockCABundleServiceMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockCABundleService) EXPECT() *MockCABundleServiceMockRecorder { return m.recorder } // GetCABundle mocks base method. func (m *MockCABundleService) GetCABundle(arg0 context.Context, arg1, arg2 string) (*model.CaBundle, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetCABundle", arg0, arg1, arg2) ret0, _ := ret[0].(*model.CaBundle) ret1, _ := ret[1].(error) return ret0, ret1 } // GetCABundle indicates an expected call of GetCABundle. func (mr *MockCABundleServiceMockRecorder) GetCABundle(arg0, arg1, arg2 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetCABundle", reflect.TypeOf((*MockCABundleService)(nil).GetCABundle), arg0, arg1, arg2) }