-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathreprocessor.go
More file actions
76 lines (63 loc) · 2.3 KB
/
reprocessor.go
File metadata and controls
76 lines (63 loc) · 2.3 KB
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
72
73
74
75
76
// Code generated by MockGen. DO NOT EDIT.
// Source: reprocessor.go
//
// Generated by this command:
//
// mockgen -package mocks -destination mocks/reprocessor.go -source reprocessor.go
//
// Package mocks is a generated GoMock package.
package mocks
import (
reflect "reflect"
gomock "go.uber.org/mock/gomock"
)
// MockPlatformReprocessor is a mock of PlatformReprocessor interface.
type MockPlatformReprocessor struct {
ctrl *gomock.Controller
recorder *MockPlatformReprocessorMockRecorder
isgomock struct{}
}
// MockPlatformReprocessorMockRecorder is the mock recorder for MockPlatformReprocessor.
type MockPlatformReprocessorMockRecorder struct {
mock *MockPlatformReprocessor
}
// NewMockPlatformReprocessor creates a new mock instance.
func NewMockPlatformReprocessor(ctrl *gomock.Controller) *MockPlatformReprocessor {
mock := &MockPlatformReprocessor{ctrl: ctrl}
mock.recorder = &MockPlatformReprocessorMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockPlatformReprocessor) EXPECT() *MockPlatformReprocessorMockRecorder {
return m.recorder
}
// RunReprocessor mocks base method.
func (m *MockPlatformReprocessor) RunReprocessor() {
m.ctrl.T.Helper()
m.ctrl.Call(m, "RunReprocessor")
}
// RunReprocessor indicates an expected call of RunReprocessor.
func (mr *MockPlatformReprocessorMockRecorder) RunReprocessor() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RunReprocessor", reflect.TypeOf((*MockPlatformReprocessor)(nil).RunReprocessor))
}
// Start mocks base method.
func (m *MockPlatformReprocessor) Start() {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Start")
}
// Start indicates an expected call of Start.
func (mr *MockPlatformReprocessorMockRecorder) Start() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Start", reflect.TypeOf((*MockPlatformReprocessor)(nil).Start))
}
// Stop mocks base method.
func (m *MockPlatformReprocessor) Stop() {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Stop")
}
// Stop indicates an expected call of Stop.
func (mr *MockPlatformReprocessorMockRecorder) Stop() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Stop", reflect.TypeOf((*MockPlatformReprocessor)(nil).Stop))
}