github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/tenantfetchersvc/automock/tenant_subscriber.go (about)

     1  // Code generated by mockery. DO NOT EDIT.
     2  
     3  package automock
     4  
     5  import (
     6  	context "context"
     7  
     8  	tenantfetchersvc "github.com/kyma-incubator/compass/components/director/internal/tenantfetchersvc"
     9  	mock "github.com/stretchr/testify/mock"
    10  )
    11  
    12  // TenantSubscriber is an autogenerated mock type for the TenantSubscriber type
    13  type TenantSubscriber struct {
    14  	mock.Mock
    15  }
    16  
    17  // Subscribe provides a mock function with given fields: ctx, tenantSubscriptionRequest
    18  func (_m *TenantSubscriber) Subscribe(ctx context.Context, tenantSubscriptionRequest *tenantfetchersvc.TenantSubscriptionRequest) error {
    19  	ret := _m.Called(ctx, tenantSubscriptionRequest)
    20  
    21  	var r0 error
    22  	if rf, ok := ret.Get(0).(func(context.Context, *tenantfetchersvc.TenantSubscriptionRequest) error); ok {
    23  		r0 = rf(ctx, tenantSubscriptionRequest)
    24  	} else {
    25  		r0 = ret.Error(0)
    26  	}
    27  
    28  	return r0
    29  }
    30  
    31  // Unsubscribe provides a mock function with given fields: ctx, tenantSubscriptionRequest
    32  func (_m *TenantSubscriber) Unsubscribe(ctx context.Context, tenantSubscriptionRequest *tenantfetchersvc.TenantSubscriptionRequest) error {
    33  	ret := _m.Called(ctx, tenantSubscriptionRequest)
    34  
    35  	var r0 error
    36  	if rf, ok := ret.Get(0).(func(context.Context, *tenantfetchersvc.TenantSubscriptionRequest) error); ok {
    37  		r0 = rf(ctx, tenantSubscriptionRequest)
    38  	} else {
    39  		r0 = ret.Error(0)
    40  	}
    41  
    42  	return r0
    43  }
    44  
    45  type mockConstructorTestingTNewTenantSubscriber interface {
    46  	mock.TestingT
    47  	Cleanup(func())
    48  }
    49  
    50  // NewTenantSubscriber creates a new instance of TenantSubscriber. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    51  func NewTenantSubscriber(t mockConstructorTestingTNewTenantSubscriber) *TenantSubscriber {
    52  	mock := &TenantSubscriber{}
    53  	mock.Mock.Test(t)
    54  
    55  	t.Cleanup(func() { mock.AssertExpectations(t) })
    56  
    57  	return mock
    58  }