github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/tenantfetchersvc/resync/automock/tenant_mover.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  // TenantMover is an autogenerated mock type for the TenantMover type
    13  type TenantMover struct {
    14  	mock.Mock
    15  }
    16  
    17  // MoveTenants provides a mock function with given fields: ctx, movedSubaccountMappings
    18  func (_m *TenantMover) MoveTenants(ctx context.Context, movedSubaccountMappings []model.MovedSubaccountMappingInput) error {
    19  	ret := _m.Called(ctx, movedSubaccountMappings)
    20  
    21  	var r0 error
    22  	if rf, ok := ret.Get(0).(func(context.Context, []model.MovedSubaccountMappingInput) error); ok {
    23  		r0 = rf(ctx, movedSubaccountMappings)
    24  	} else {
    25  		r0 = ret.Error(0)
    26  	}
    27  
    28  	return r0
    29  }
    30  
    31  // TenantsToMove provides a mock function with given fields: ctx, region, fromTimestamp
    32  func (_m *TenantMover) TenantsToMove(ctx context.Context, region string, fromTimestamp string) ([]model.MovedSubaccountMappingInput, error) {
    33  	ret := _m.Called(ctx, region, fromTimestamp)
    34  
    35  	var r0 []model.MovedSubaccountMappingInput
    36  	if rf, ok := ret.Get(0).(func(context.Context, string, string) []model.MovedSubaccountMappingInput); ok {
    37  		r0 = rf(ctx, region, fromTimestamp)
    38  	} else {
    39  		if ret.Get(0) != nil {
    40  			r0 = ret.Get(0).([]model.MovedSubaccountMappingInput)
    41  		}
    42  	}
    43  
    44  	var r1 error
    45  	if rf, ok := ret.Get(1).(func(context.Context, string, string) error); ok {
    46  		r1 = rf(ctx, region, fromTimestamp)
    47  	} else {
    48  		r1 = ret.Error(1)
    49  	}
    50  
    51  	return r0, r1
    52  }
    53  
    54  type mockConstructorTestingTNewTenantMover interface {
    55  	mock.TestingT
    56  	Cleanup(func())
    57  }
    58  
    59  // NewTenantMover creates a new instance of TenantMover. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    60  func NewTenantMover(t mockConstructorTestingTNewTenantMover) *TenantMover {
    61  	mock := &TenantMover{}
    62  	mock.Mock.Test(t)
    63  
    64  	t.Cleanup(func() { mock.AssertExpectations(t) })
    65  
    66  	return mock
    67  }