github.com/xmidt-org/webpa-common@v1.11.9/service/monitor/mocks_test.go (about)

     1  package monitor
     2  
     3  import "github.com/stretchr/testify/mock"
     4  
     5  type mockListener struct {
     6  	mock.Mock
     7  }
     8  
     9  func (m *mockListener) MonitorEvent(e Event) {
    10  	m.Called(e)
    11  }