package mocks import mock "github.com/stretchr/testify/mock" // FilterableContainer is an autogenerated mock type for the FilterableContainer type type FilterableContainer struct { mock.Mock } // Enabled provides a mock function with given fields: func (_m *FilterableContainer) Enabled() (bool, bool) { ret := _m.Called() var r0 bool if rf, ok := ret.Get(0).(func() bool); ok { r0 = rf() } else { r0 = ret.Get(0).(bool) } var r1 bool if rf, ok := ret.Get(1).(func() bool); ok { r1 = rf() } else { r1 = ret.Get(1).(bool) } return r0, r1 } // IsWatchtower provides a mock function with given fields: func (_m *FilterableContainer) IsWatchtower() bool { ret := _m.Called() var r0 bool if rf, ok := ret.Get(0).(func() bool); ok { r0 = rf() } else { r0 = ret.Get(0).(bool) } return r0 } // Name provides a mock function with given fields: func (_m *FilterableContainer) Name() string { ret := _m.Called() var r0 string if rf, ok := ret.Get(0).(func() string); ok { r0 = rf() } else { r0 = ret.Get(0).(string) } return r0 }