github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/domain/scenarioassignment/automock/tenant_service.go (about) 1 // Code generated by mockery. DO NOT EDIT. 2 3 package automock 4 5 import ( 6 context "context" 7 8 mock "github.com/stretchr/testify/mock" 9 ) 10 11 // TenantService is an autogenerated mock type for the tenantService type 12 type TenantService struct { 13 mock.Mock 14 } 15 16 // GetExternalTenant provides a mock function with given fields: ctx, id 17 func (_m *TenantService) GetExternalTenant(ctx context.Context, id string) (string, error) { 18 ret := _m.Called(ctx, id) 19 20 var r0 string 21 if rf, ok := ret.Get(0).(func(context.Context, string) string); ok { 22 r0 = rf(ctx, id) 23 } else { 24 r0 = ret.Get(0).(string) 25 } 26 27 var r1 error 28 if rf, ok := ret.Get(1).(func(context.Context, string) error); ok { 29 r1 = rf(ctx, id) 30 } else { 31 r1 = ret.Error(1) 32 } 33 34 return r0, r1 35 } 36 37 // GetInternalTenant provides a mock function with given fields: ctx, externalTenant 38 func (_m *TenantService) GetInternalTenant(ctx context.Context, externalTenant string) (string, error) { 39 ret := _m.Called(ctx, externalTenant) 40 41 var r0 string 42 if rf, ok := ret.Get(0).(func(context.Context, string) string); ok { 43 r0 = rf(ctx, externalTenant) 44 } else { 45 r0 = ret.Get(0).(string) 46 } 47 48 var r1 error 49 if rf, ok := ret.Get(1).(func(context.Context, string) error); ok { 50 r1 = rf(ctx, externalTenant) 51 } else { 52 r1 = ret.Error(1) 53 } 54 55 return r0, r1 56 } 57 58 type mockConstructorTestingTNewTenantService interface { 59 mock.TestingT 60 Cleanup(func()) 61 } 62 63 // NewTenantService creates a new instance of TenantService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 64 func NewTenantService(t mockConstructorTestingTNewTenantService) *TenantService { 65 mock := &TenantService{} 66 mock.Mock.Test(t) 67 68 t.Cleanup(func() { mock.AssertExpectations(t) }) 69 70 return mock 71 }