-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathdispatcher_mock.go
49 lines (40 loc) · 1.41 KB
/
dispatcher_mock.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
46
47
48
49
// Code generated by MockGen. DO NOT EDIT.
// Source: dispatcher.go
// Package kim is a generated GoMock package.
package kim
import (
reflect "reflect"
gomock "github.com/golang/mock/gomock"
pkt "github.com/klintcheng/kim/wire/pkt"
)
// MockDispatcher is a mock of Dispatcher interface.
type MockDispatcher struct {
ctrl *gomock.Controller
recorder *MockDispatcherMockRecorder
}
// MockDispatcherMockRecorder is the mock recorder for MockDispatcher.
type MockDispatcherMockRecorder struct {
mock *MockDispatcher
}
// NewMockDispatcher creates a new mock instance.
func NewMockDispatcher(ctrl *gomock.Controller) *MockDispatcher {
mock := &MockDispatcher{ctrl: ctrl}
mock.recorder = &MockDispatcherMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockDispatcher) EXPECT() *MockDispatcherMockRecorder {
return m.recorder
}
// Push mocks base method.
func (m *MockDispatcher) Push(gateway string, channels []string, p *pkt.LogicPkt) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Push", gateway, channels, p)
ret0, _ := ret[0].(error)
return ret0
}
// Push indicates an expected call of Push.
func (mr *MockDispatcherMockRecorder) Push(gateway, channels, p interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Push", reflect.TypeOf((*MockDispatcher)(nil).Push), gateway, channels, p)
}