github.com/kyma-project/kyma-environment-broker@v0.0.1/internal/process/provisioning/automock/director_client.go (about) 1 // Code generated by mockery v2.14.0. DO NOT EDIT. 2 3 package automock 4 5 import mock "github.com/stretchr/testify/mock" 6 7 // DirectorClient is an autogenerated mock type for the DirectorClient type 8 type DirectorClient struct { 9 mock.Mock 10 } 11 12 // SetLabel provides a mock function with given fields: accountID, runtimeID, key, value 13 func (_m *DirectorClient) SetLabel(accountID string, runtimeID string, key string, value string) error { 14 ret := _m.Called(accountID, runtimeID, key, value) 15 16 var r0 error 17 if rf, ok := ret.Get(0).(func(string, string, string, string) error); ok { 18 r0 = rf(accountID, runtimeID, key, value) 19 } else { 20 r0 = ret.Error(0) 21 } 22 23 return r0 24 } 25 26 type mockConstructorTestingTNewDirectorClient interface { 27 mock.TestingT 28 Cleanup(func()) 29 } 30 31 // NewDirectorClient creates a new instance of DirectorClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 32 func NewDirectorClient(t mockConstructorTestingTNewDirectorClient) *DirectorClient { 33 mock := &DirectorClient{} 34 mock.Mock.Test(t) 35 36 t.Cleanup(func() { mock.AssertExpectations(t) }) 37 38 return mock 39 }