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

     1  // Code generated by mockery v2.9.4. DO NOT EDIT.
     2  
     3  package mocks
     4  
     5  import (
     6  	notification "github.com/kyma-project/kyma-environment-broker/internal/notification"
     7  	mock "github.com/stretchr/testify/mock"
     8  )
     9  
    10  // BundleBuilder is an autogenerated mock type for the BundleBuilder type
    11  type BundleBuilder struct {
    12  	mock.Mock
    13  }
    14  
    15  // NewBundle provides a mock function with given fields: identifier, notificationParams
    16  func (_m *BundleBuilder) NewBundle(identifier string, notificationParams notification.NotificationParams) (notification.Bundle, error) {
    17  	ret := _m.Called(identifier, notificationParams)
    18  
    19  	var r0 notification.Bundle
    20  	if rf, ok := ret.Get(0).(func(string, notification.NotificationParams) notification.Bundle); ok {
    21  		r0 = rf(identifier, notificationParams)
    22  	} else {
    23  		if ret.Get(0) != nil {
    24  			r0 = ret.Get(0).(notification.Bundle)
    25  		}
    26  	}
    27  
    28  	var r1 error
    29  	if rf, ok := ret.Get(1).(func(string, notification.NotificationParams) error); ok {
    30  		r1 = rf(identifier, notificationParams)
    31  	} else {
    32  		r1 = ret.Error(1)
    33  	}
    34  
    35  	return r0, r1
    36  }