-
Notifications
You must be signed in to change notification settings - Fork 51
/
mockclient.go
71 lines (60 loc) · 1.77 KB
/
mockclient.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Code generated by MockGen. DO NOT EDIT.
// Source: controller/pkg/remoteenforcer/internal/client/interfaces.go
// Package mockclient is a generated GoMock package.
package mockclient
import (
context "context"
reflect "reflect"
gomock "github.com/golang/mock/gomock"
)
// MockReporter is a mock of Reporter interface
// nolint
type MockReporter struct {
ctrl *gomock.Controller
recorder *MockReporterMockRecorder
}
// MockReporterMockRecorder is the mock recorder for MockReporter
// nolint
type MockReporterMockRecorder struct {
mock *MockReporter
}
// NewMockReporter creates a new mock instance
// nolint
func NewMockReporter(ctrl *gomock.Controller) *MockReporter {
mock := &MockReporter{ctrl: ctrl}
mock.recorder = &MockReporterMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
// nolint
func (m *MockReporter) EXPECT() *MockReporterMockRecorder {
return m.recorder
}
// Run mocks base method
// nolint
func (m *MockReporter) Run(ctx context.Context) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Run", ctx)
ret0, _ := ret[0].(error)
return ret0
}
// Run indicates an expected call of Run
// nolint
func (mr *MockReporterMockRecorder) Run(ctx interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Run", reflect.TypeOf((*MockReporter)(nil).Run), ctx)
}
// Send mocks base method
// nolint
func (m *MockReporter) Send() error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Send")
ret0, _ := ret[0].(error)
return ret0
}
// Send indicates an expected call of Send
// nolint
func (mr *MockReporterMockRecorder) Send() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Send", reflect.TypeOf((*MockReporter)(nil).Send))
}