-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathfederation.pb_mock.go
45 lines (37 loc) · 1.34 KB
/
federation.pb_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
// Code generated by MockGen. DO NOT EDIT.
// Source: plugin/federation/federation.pb.go
// Package federation is a generated GoMock package.
package federation
import (
gomock "github.com/golang/mock/gomock"
reflect "reflect"
)
// MockisEvent_Event is a mock of isEvent_Event interface
type MockisEvent_Event struct {
ctrl *gomock.Controller
recorder *MockisEvent_EventMockRecorder
}
// MockisEvent_EventMockRecorder is the mock recorder for MockisEvent_Event
type MockisEvent_EventMockRecorder struct {
mock *MockisEvent_Event
}
// NewMockisEvent_Event creates a new mock instance
func NewMockisEvent_Event(ctrl *gomock.Controller) *MockisEvent_Event {
mock := &MockisEvent_Event{ctrl: ctrl}
mock.recorder = &MockisEvent_EventMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockisEvent_Event) EXPECT() *MockisEvent_EventMockRecorder {
return m.recorder
}
// isEvent_Event mocks base method
func (m *MockisEvent_Event) isEvent_Event() {
m.ctrl.T.Helper()
m.ctrl.Call(m, "isEvent_Event")
}
// isEvent_Event indicates an expected call of isEvent_Event
func (mr *MockisEvent_EventMockRecorder) isEvent_Event() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "isEvent_Event", reflect.TypeOf((*MockisEvent_Event)(nil).isEvent_Event))
}