github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/pkg/accessstrategy/automock/executor_provider.go (about) 1 // Code generated by mockery. DO NOT EDIT. 2 3 package automock 4 5 import ( 6 accessstrategy "github.com/kyma-incubator/compass/components/director/pkg/accessstrategy" 7 mock "github.com/stretchr/testify/mock" 8 ) 9 10 // ExecutorProvider is an autogenerated mock type for the ExecutorProvider type 11 type ExecutorProvider struct { 12 mock.Mock 13 } 14 15 // Provide provides a mock function with given fields: accessStrategyType 16 func (_m *ExecutorProvider) Provide(accessStrategyType accessstrategy.Type) (accessstrategy.Executor, error) { 17 ret := _m.Called(accessStrategyType) 18 19 var r0 accessstrategy.Executor 20 if rf, ok := ret.Get(0).(func(accessstrategy.Type) accessstrategy.Executor); ok { 21 r0 = rf(accessStrategyType) 22 } else { 23 if ret.Get(0) != nil { 24 r0 = ret.Get(0).(accessstrategy.Executor) 25 } 26 } 27 28 var r1 error 29 if rf, ok := ret.Get(1).(func(accessstrategy.Type) error); ok { 30 r1 = rf(accessStrategyType) 31 } else { 32 r1 = ret.Error(1) 33 } 34 35 return r0, r1 36 } 37 38 type mockConstructorTestingTNewExecutorProvider interface { 39 mock.TestingT 40 Cleanup(func()) 41 } 42 43 // NewExecutorProvider creates a new instance of ExecutorProvider. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 44 func NewExecutorProvider(t mockConstructorTestingTNewExecutorProvider) *ExecutorProvider { 45 mock := &ExecutorProvider{} 46 mock.Mock.Test(t) 47 48 t.Cleanup(func() { mock.AssertExpectations(t) }) 49 50 return mock 51 }