You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package inputs |
|
|
|
import "github.com/stretchr/testify/mock" |
|
|
|
type MockPlugin struct { |
|
mock.Mock |
|
} |
|
|
|
func (m *MockPlugin) Gather(_a0 Accumulator) error { |
|
ret := m.Called(_a0) |
|
|
|
r0 := ret.Error(0) |
|
|
|
return r0 |
|
}
|
|
|