forked from hyperledger/firefly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent_interface.go
45 lines (35 loc) · 1.15 KB
/
event_interface.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Code generated by mockery v2.38.0. DO NOT EDIT.
package systemeventmocks
import (
system "github.com/hyperledger/firefly/internal/events/system"
mock "github.com/stretchr/testify/mock"
)
// EventInterface is an autogenerated mock type for the EventInterface type
type EventInterface struct {
mock.Mock
}
// AddSystemEventListener provides a mock function with given fields: ns, el
func (_m *EventInterface) AddSystemEventListener(ns string, el system.EventListener) error {
ret := _m.Called(ns, el)
if len(ret) == 0 {
panic("no return value specified for AddSystemEventListener")
}
var r0 error
if rf, ok := ret.Get(0).(func(string, system.EventListener) error); ok {
r0 = rf(ns, el)
} else {
r0 = ret.Error(0)
}
return r0
}
// NewEventInterface creates a new instance of EventInterface. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewEventInterface(t interface {
mock.TestingT
Cleanup(func())
}) *EventInterface {
mock := &EventInterface{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}