github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/domain/webhook/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  // ExtractTenantIDForTenantScopedFormationTemplates provides a mock function with given fields: ctx
    17  func (_m *TenantService) ExtractTenantIDForTenantScopedFormationTemplates(ctx context.Context) (string, error) {
    18  	ret := _m.Called(ctx)
    19  
    20  	var r0 string
    21  	if rf, ok := ret.Get(0).(func(context.Context) string); ok {
    22  		r0 = rf(ctx)
    23  	} else {
    24  		r0 = ret.Get(0).(string)
    25  	}
    26  
    27  	var r1 error
    28  	if rf, ok := ret.Get(1).(func(context.Context) error); ok {
    29  		r1 = rf(ctx)
    30  	} else {
    31  		r1 = ret.Error(1)
    32  	}
    33  
    34  	return r0, r1
    35  }
    36  
    37  type mockConstructorTestingTNewTenantService interface {
    38  	mock.TestingT
    39  	Cleanup(func())
    40  }
    41  
    42  // 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.
    43  func NewTenantService(t mockConstructorTestingTNewTenantService) *TenantService {
    44  	mock := &TenantService{}
    45  	mock.Mock.Test(t)
    46  
    47  	t.Cleanup(func() { mock.AssertExpectations(t) })
    48  
    49  	return mock
    50  }