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