github.com/argoproj/argo-cd/v2@v2.10.9/server/extension/mocks/ApplicationGetter.go (about) 1 // Code generated by mockery v2.15.0. DO NOT EDIT. 2 3 package mocks 4 5 import ( 6 v1alpha1 "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1" 7 mock "github.com/stretchr/testify/mock" 8 ) 9 10 // ApplicationGetter is an autogenerated mock type for the ApplicationGetter type 11 type ApplicationGetter struct { 12 mock.Mock 13 } 14 15 // Get provides a mock function with given fields: ns, name 16 func (_m *ApplicationGetter) Get(ns string, name string) (*v1alpha1.Application, error) { 17 ret := _m.Called(ns, name) 18 19 var r0 *v1alpha1.Application 20 if rf, ok := ret.Get(0).(func(string, string) *v1alpha1.Application); ok { 21 r0 = rf(ns, name) 22 } else { 23 if ret.Get(0) != nil { 24 r0 = ret.Get(0).(*v1alpha1.Application) 25 } 26 } 27 28 var r1 error 29 if rf, ok := ret.Get(1).(func(string, string) error); ok { 30 r1 = rf(ns, name) 31 } else { 32 r1 = ret.Error(1) 33 } 34 35 return r0, r1 36 } 37 38 type mockConstructorTestingTNewApplicationGetter interface { 39 mock.TestingT 40 Cleanup(func()) 41 } 42 43 // NewApplicationGetter creates a new instance of ApplicationGetter. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 44 func NewApplicationGetter(t mockConstructorTestingTNewApplicationGetter) *ApplicationGetter { 45 mock := &ApplicationGetter{} 46 mock.Mock.Test(t) 47 48 t.Cleanup(func() { mock.AssertExpectations(t) }) 49 50 return mock 51 }