github.com/xmidt-org/webpa-common@v1.11.9/device/devicehealth/mocks_test.go (about) 1 package devicehealth 2 3 import ( 4 "github.com/stretchr/testify/mock" 5 "github.com/xmidt-org/webpa-common/health" 6 ) 7 8 type mockDispatcher struct { 9 mock.Mock 10 } 11 12 func (m *mockDispatcher) SendEvent(hf health.HealthFunc) { 13 m.Called(hf) 14 }