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