github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/open_resource_discovery/automock/tombstone_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  // TombstoneService is an autogenerated mock type for the TombstoneService type
    15  type TombstoneService struct {
    16  	mock.Mock
    17  }
    18  
    19  // Create provides a mock function with given fields: ctx, resourceType, resourceID, in
    20  func (_m *TombstoneService) Create(ctx context.Context, resourceType resource.Type, resourceID string, in model.TombstoneInput) (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.TombstoneInput) 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.TombstoneInput) 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  // ListByApplicationID provides a mock function with given fields: ctx, appID
    41  func (_m *TombstoneService) ListByApplicationID(ctx context.Context, appID string) ([]*model.Tombstone, error) {
    42  	ret := _m.Called(ctx, appID)
    43  
    44  	var r0 []*model.Tombstone
    45  	if rf, ok := ret.Get(0).(func(context.Context, string) []*model.Tombstone); ok {
    46  		r0 = rf(ctx, appID)
    47  	} else {
    48  		if ret.Get(0) != nil {
    49  			r0 = ret.Get(0).([]*model.Tombstone)
    50  		}
    51  	}
    52  
    53  	var r1 error
    54  	if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
    55  		r1 = rf(ctx, appID)
    56  	} else {
    57  		r1 = ret.Error(1)
    58  	}
    59  
    60  	return r0, r1
    61  }
    62  
    63  // ListByApplicationTemplateVersionID provides a mock function with given fields: ctx, appID
    64  func (_m *TombstoneService) ListByApplicationTemplateVersionID(ctx context.Context, appID string) ([]*model.Tombstone, error) {
    65  	ret := _m.Called(ctx, appID)
    66  
    67  	var r0 []*model.Tombstone
    68  	if rf, ok := ret.Get(0).(func(context.Context, string) []*model.Tombstone); ok {
    69  		r0 = rf(ctx, appID)
    70  	} else {
    71  		if ret.Get(0) != nil {
    72  			r0 = ret.Get(0).([]*model.Tombstone)
    73  		}
    74  	}
    75  
    76  	var r1 error
    77  	if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
    78  		r1 = rf(ctx, appID)
    79  	} else {
    80  		r1 = ret.Error(1)
    81  	}
    82  
    83  	return r0, r1
    84  }
    85  
    86  // Update provides a mock function with given fields: ctx, resourceType, id, in
    87  func (_m *TombstoneService) Update(ctx context.Context, resourceType resource.Type, id string, in model.TombstoneInput) error {
    88  	ret := _m.Called(ctx, resourceType, id, in)
    89  
    90  	var r0 error
    91  	if rf, ok := ret.Get(0).(func(context.Context, resource.Type, string, model.TombstoneInput) error); ok {
    92  		r0 = rf(ctx, resourceType, id, in)
    93  	} else {
    94  		r0 = ret.Error(0)
    95  	}
    96  
    97  	return r0
    98  }
    99  
   100  type mockConstructorTestingTNewTombstoneService interface {
   101  	mock.TestingT
   102  	Cleanup(func())
   103  }
   104  
   105  // NewTombstoneService creates a new instance of TombstoneService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
   106  func NewTombstoneService(t mockConstructorTestingTNewTombstoneService) *TombstoneService {
   107  	mock := &TombstoneService{}
   108  	mock.Mock.Test(t)
   109  
   110  	t.Cleanup(func() { mock.AssertExpectations(t) })
   111  
   112  	return mock
   113  }