github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/domain/bundle/automock/bundle_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  	resource "github.com/kyma-incubator/compass/components/director/pkg/resource"
    12  )
    13  
    14  // BundleService is an autogenerated mock type for the BundleService type
    15  type BundleService struct {
    16  	mock.Mock
    17  }
    18  
    19  // Create provides a mock function with given fields: ctx, resourceType, resourceID, in
    20  func (_m *BundleService) Create(ctx context.Context, resourceType resource.Type, resourceID string, in model.BundleCreateInput) (string, error) {
    21  	ret := _m.Called(ctx, resourceType, resourceID, in)
    22  
    23  	var r0 string
    24  	if rf, ok := ret.Get(0).(func(context.Context, resource.Type, string, model.BundleCreateInput) string); ok {
    25  		r0 = rf(ctx, resourceType, resourceID, in)
    26  	} else {
    27  		r0 = ret.Get(0).(string)
    28  	}
    29  
    30  	var r1 error
    31  	if rf, ok := ret.Get(1).(func(context.Context, resource.Type, string, model.BundleCreateInput) error); ok {
    32  		r1 = rf(ctx, resourceType, resourceID, in)
    33  	} else {
    34  		r1 = ret.Error(1)
    35  	}
    36  
    37  	return r0, r1
    38  }
    39  
    40  // Delete provides a mock function with given fields: ctx, resourceType, id
    41  func (_m *BundleService) Delete(ctx context.Context, resourceType resource.Type, id string) error {
    42  	ret := _m.Called(ctx, resourceType, id)
    43  
    44  	var r0 error
    45  	if rf, ok := ret.Get(0).(func(context.Context, resource.Type, string) error); ok {
    46  		r0 = rf(ctx, resourceType, id)
    47  	} else {
    48  		r0 = ret.Error(0)
    49  	}
    50  
    51  	return r0
    52  }
    53  
    54  // Get provides a mock function with given fields: ctx, id
    55  func (_m *BundleService) Get(ctx context.Context, id string) (*model.Bundle, error) {
    56  	ret := _m.Called(ctx, id)
    57  
    58  	var r0 *model.Bundle
    59  	if rf, ok := ret.Get(0).(func(context.Context, string) *model.Bundle); ok {
    60  		r0 = rf(ctx, id)
    61  	} else {
    62  		if ret.Get(0) != nil {
    63  			r0 = ret.Get(0).(*model.Bundle)
    64  		}
    65  	}
    66  
    67  	var r1 error
    68  	if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
    69  		r1 = rf(ctx, id)
    70  	} else {
    71  		r1 = ret.Error(1)
    72  	}
    73  
    74  	return r0, r1
    75  }
    76  
    77  // Update provides a mock function with given fields: ctx, resourceType, id, in
    78  func (_m *BundleService) Update(ctx context.Context, resourceType resource.Type, id string, in model.BundleUpdateInput) error {
    79  	ret := _m.Called(ctx, resourceType, id, in)
    80  
    81  	var r0 error
    82  	if rf, ok := ret.Get(0).(func(context.Context, resource.Type, string, model.BundleUpdateInput) error); ok {
    83  		r0 = rf(ctx, resourceType, id, in)
    84  	} else {
    85  		r0 = ret.Error(0)
    86  	}
    87  
    88  	return r0
    89  }
    90  
    91  type mockConstructorTestingTNewBundleService interface {
    92  	mock.TestingT
    93  	Cleanup(func())
    94  }
    95  
    96  // NewBundleService creates a new instance of BundleService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    97  func NewBundleService(t mockConstructorTestingTNewBundleService) *BundleService {
    98  	mock := &BundleService{}
    99  	mock.Mock.Test(t)
   100  
   101  	t.Cleanup(func() { mock.AssertExpectations(t) })
   102  
   103  	return mock
   104  }