github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/systemfetcher/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 model "github.com/kyma-incubator/compass/components/director/internal/model" 9 mock "github.com/stretchr/testify/mock" 10 ) 11 12 // ApplicationTemplateService is an autogenerated mock type for the applicationTemplateService type 13 type ApplicationTemplateService struct { 14 mock.Mock 15 } 16 17 // Get provides a mock function with given fields: ctx, id 18 func (_m *ApplicationTemplateService) Get(ctx context.Context, id string) (*model.ApplicationTemplate, error) { 19 ret := _m.Called(ctx, id) 20 21 var r0 *model.ApplicationTemplate 22 if rf, ok := ret.Get(0).(func(context.Context, string) *model.ApplicationTemplate); ok { 23 r0 = rf(ctx, id) 24 } else { 25 if ret.Get(0) != nil { 26 r0 = ret.Get(0).(*model.ApplicationTemplate) 27 } 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 // PrepareApplicationCreateInputJSON provides a mock function with given fields: appTemplate, values 41 func (_m *ApplicationTemplateService) PrepareApplicationCreateInputJSON(appTemplate *model.ApplicationTemplate, values model.ApplicationFromTemplateInputValues) (string, error) { 42 ret := _m.Called(appTemplate, values) 43 44 var r0 string 45 if rf, ok := ret.Get(0).(func(*model.ApplicationTemplate, model.ApplicationFromTemplateInputValues) string); ok { 46 r0 = rf(appTemplate, values) 47 } else { 48 r0 = ret.Get(0).(string) 49 } 50 51 var r1 error 52 if rf, ok := ret.Get(1).(func(*model.ApplicationTemplate, model.ApplicationFromTemplateInputValues) error); ok { 53 r1 = rf(appTemplate, values) 54 } else { 55 r1 = ret.Error(1) 56 } 57 58 return r0, r1 59 } 60 61 type mockConstructorTestingTNewApplicationTemplateService interface { 62 mock.TestingT 63 Cleanup(func()) 64 } 65 66 // 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. 67 func NewApplicationTemplateService(t mockConstructorTestingTNewApplicationTemplateService) *ApplicationTemplateService { 68 mock := &ApplicationTemplateService{} 69 mock.Mock.Test(t) 70 71 t.Cleanup(func() { mock.AssertExpectations(t) }) 72 73 return mock 74 }