...
1
2
3
4
5 package mocks
6
7 import (
8 reflect "reflect"
9
10 oci "edge-infra.dev/pkg/f8n/warehouse/oci"
11 gomock "github.com/golang/mock/gomock"
12 )
13
14
15 type MockArtifactRegistryClient struct {
16 ctrl *gomock.Controller
17 recorder *MockArtifactRegistryClientMockRecorder
18 }
19
20
21 type MockArtifactRegistryClientMockRecorder struct {
22 mock *MockArtifactRegistryClient
23 }
24
25
26 func NewMockArtifactRegistryClient(ctrl *gomock.Controller) *MockArtifactRegistryClient {
27 mock := &MockArtifactRegistryClient{ctrl: ctrl}
28 mock.recorder = &MockArtifactRegistryClientMockRecorder{mock}
29 return mock
30 }
31
32
33 func (m *MockArtifactRegistryClient) EXPECT() *MockArtifactRegistryClientMockRecorder {
34 return m.recorder
35 }
36
37
38 func (m *MockArtifactRegistryClient) Get(arg0, arg1, arg2 string) (oci.Artifact, error) {
39 m.ctrl.T.Helper()
40 ret := m.ctrl.Call(m, "Get", arg0, arg1, arg2)
41 ret0, _ := ret[0].(oci.Artifact)
42 ret1, _ := ret[1].(error)
43 return ret0, ret1
44 }
45
46
47 func (mr *MockArtifactRegistryClientMockRecorder) Get(arg0, arg1, arg2 interface{}) *gomock.Call {
48 mr.mock.ctrl.T.Helper()
49 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockArtifactRegistryClient)(nil).Get), arg0, arg1, arg2)
50 }
51
View as plain text