github.com/kyma-project/kyma-environment-broker@v0.0.1/internal/notification/mocks/Bundle.go (about)

     1  // Code generated by mockery v2.9.4. DO NOT EDIT.
     2  
     3  package mocks
     4  
     5  import mock "github.com/stretchr/testify/mock"
     6  
     7  // Bundle is an autogenerated mock type for the Bundle type
     8  type Bundle struct {
     9  	mock.Mock
    10  }
    11  
    12  // CancelNotificationEvent provides a mock function with given fields:
    13  func (_m *Bundle) CancelNotificationEvent() error {
    14  	ret := _m.Called()
    15  
    16  	var r0 error
    17  	if rf, ok := ret.Get(0).(func() error); ok {
    18  		r0 = rf()
    19  	} else {
    20  		r0 = ret.Error(0)
    21  	}
    22  
    23  	return r0
    24  }
    25  
    26  // CreateNotificationEvent provides a mock function with given fields:
    27  func (_m *Bundle) CreateNotificationEvent() error {
    28  	ret := _m.Called()
    29  
    30  	var r0 error
    31  	if rf, ok := ret.Get(0).(func() error); ok {
    32  		r0 = rf()
    33  	} else {
    34  		r0 = ret.Error(0)
    35  	}
    36  
    37  	return r0
    38  }
    39  
    40  // UpdateNotificationEvent provides a mock function with given fields:
    41  func (_m *Bundle) UpdateNotificationEvent() error {
    42  	ret := _m.Called()
    43  
    44  	var r0 error
    45  	if rf, ok := ret.Get(0).(func() error); ok {
    46  		r0 = rf()
    47  	} else {
    48  		r0 = ret.Error(0)
    49  	}
    50  
    51  	return r0
    52  }