github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/domain/subscription/automock/application_template_service.go (about) 1 // Code generated by mockery. DO NOT EDIT. 2 3 package automock 4 5 import ( 6 context "context" 7 8 labelfilter "github.com/kyma-incubator/compass/components/director/internal/labelfilter" 9 mock "github.com/stretchr/testify/mock" 10 11 model "github.com/kyma-incubator/compass/components/director/internal/model" 12 ) 13 14 // ApplicationTemplateService is an autogenerated mock type for the ApplicationTemplateService type 15 type ApplicationTemplateService struct { 16 mock.Mock 17 } 18 19 // Exists provides a mock function with given fields: ctx, id 20 func (_m *ApplicationTemplateService) Exists(ctx context.Context, id string) (bool, error) { 21 ret := _m.Called(ctx, id) 22 23 var r0 bool 24 if rf, ok := ret.Get(0).(func(context.Context, string) bool); ok { 25 r0 = rf(ctx, id) 26 } else { 27 r0 = ret.Get(0).(bool) 28 } 29 30 var r1 error 31 if rf, ok := ret.Get(1).(func(context.Context, string) error); ok { 32 r1 = rf(ctx, id) 33 } else { 34 r1 = ret.Error(1) 35 } 36 37 return r0, r1 38 } 39 40 // GetByFilters provides a mock function with given fields: ctx, filter 41 func (_m *ApplicationTemplateService) GetByFilters(ctx context.Context, filter []*labelfilter.LabelFilter) (*model.ApplicationTemplate, error) { 42 ret := _m.Called(ctx, filter) 43 44 var r0 *model.ApplicationTemplate 45 if rf, ok := ret.Get(0).(func(context.Context, []*labelfilter.LabelFilter) *model.ApplicationTemplate); ok { 46 r0 = rf(ctx, filter) 47 } else { 48 if ret.Get(0) != nil { 49 r0 = ret.Get(0).(*model.ApplicationTemplate) 50 } 51 } 52 53 var r1 error 54 if rf, ok := ret.Get(1).(func(context.Context, []*labelfilter.LabelFilter) error); ok { 55 r1 = rf(ctx, filter) 56 } else { 57 r1 = ret.Error(1) 58 } 59 60 return r0, r1 61 } 62 63 // PrepareApplicationCreateInputJSON provides a mock function with given fields: appTemplate, values 64 func (_m *ApplicationTemplateService) PrepareApplicationCreateInputJSON(appTemplate *model.ApplicationTemplate, values model.ApplicationFromTemplateInputValues) (string, error) { 65 ret := _m.Called(appTemplate, values) 66 67 var r0 string 68 if rf, ok := ret.Get(0).(func(*model.ApplicationTemplate, model.ApplicationFromTemplateInputValues) string); ok { 69 r0 = rf(appTemplate, values) 70 } else { 71 r0 = ret.Get(0).(string) 72 } 73 74 var r1 error 75 if rf, ok := ret.Get(1).(func(*model.ApplicationTemplate, model.ApplicationFromTemplateInputValues) error); ok { 76 r1 = rf(appTemplate, values) 77 } else { 78 r1 = ret.Error(1) 79 } 80 81 return r0, r1 82 } 83 84 type mockConstructorTestingTNewApplicationTemplateService interface { 85 mock.TestingT 86 Cleanup(func()) 87 } 88 89 // NewApplicationTemplateService creates a new instance of ApplicationTemplateService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 90 func NewApplicationTemplateService(t mockConstructorTestingTNewApplicationTemplateService) *ApplicationTemplateService { 91 mock := &ApplicationTemplateService{} 92 mock.Mock.Test(t) 93 94 t.Cleanup(func() { mock.AssertExpectations(t) }) 95 96 return mock 97 }