github.com/kyma-project/kyma-environment-broker@v0.0.1/common/orchestration/automock/runtime_resolver.go (about) 1 // Code generated by mockery v2.14.0. DO NOT EDIT. 2 3 package automock 4 5 import ( 6 orchestration "github.com/kyma-project/kyma-environment-broker/common/orchestration" 7 mock "github.com/stretchr/testify/mock" 8 ) 9 10 // RuntimeResolver is an autogenerated mock type for the RuntimeResolver type 11 type RuntimeResolver struct { 12 mock.Mock 13 } 14 15 // Resolve provides a mock function with given fields: targets 16 func (_m *RuntimeResolver) Resolve(targets orchestration.TargetSpec) ([]orchestration.Runtime, error) { 17 ret := _m.Called(targets) 18 19 var r0 []orchestration.Runtime 20 if rf, ok := ret.Get(0).(func(orchestration.TargetSpec) []orchestration.Runtime); ok { 21 r0 = rf(targets) 22 } else { 23 if ret.Get(0) != nil { 24 r0 = ret.Get(0).([]orchestration.Runtime) 25 } 26 } 27 28 var r1 error 29 if rf, ok := ret.Get(1).(func(orchestration.TargetSpec) error); ok { 30 r1 = rf(targets) 31 } else { 32 r1 = ret.Error(1) 33 } 34 35 return r0, r1 36 } 37 38 type mockConstructorTestingTNewRuntimeResolver interface { 39 mock.TestingT 40 Cleanup(func()) 41 } 42 43 // NewRuntimeResolver creates a new instance of RuntimeResolver. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 44 func NewRuntimeResolver(t mockConstructorTestingTNewRuntimeResolver) *RuntimeResolver { 45 mock := &RuntimeResolver{} 46 mock.Mock.Test(t) 47 48 t.Cleanup(func() { mock.AssertExpectations(t) }) 49 50 return mock 51 }