-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock_measurement.go
299 lines (248 loc) · 8.96 KB
/
mock_measurement.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
// Code generated by MockGen. DO NOT EDIT.
// Source: measurement.go
// Package stats is a generated GoMock package.
package stats
import (
reflect "reflect"
time "time"
gomock "github.com/golang/mock/gomock"
)
// MockCounter is a mock of Counter interface.
type MockCounter struct {
ctrl *gomock.Controller
recorder *MockCounterMockRecorder
}
// MockCounterMockRecorder is the mock recorder for MockCounter.
type MockCounterMockRecorder struct {
mock *MockCounter
}
// NewMockCounter creates a new mock instance.
func NewMockCounter(ctrl *gomock.Controller) *MockCounter {
mock := &MockCounter{ctrl: ctrl}
mock.recorder = &MockCounterMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockCounter) EXPECT() *MockCounterMockRecorder {
return m.recorder
}
// Count mocks base method.
func (m *MockCounter) Count(n int) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Count", n)
}
// Count indicates an expected call of Count.
func (mr *MockCounterMockRecorder) Count(n interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Count", reflect.TypeOf((*MockCounter)(nil).Count), n)
}
// Increment mocks base method.
func (m *MockCounter) Increment() {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Increment")
}
// Increment indicates an expected call of Increment.
func (mr *MockCounterMockRecorder) Increment() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Increment", reflect.TypeOf((*MockCounter)(nil).Increment))
}
// MockGauge is a mock of Gauge interface.
type MockGauge struct {
ctrl *gomock.Controller
recorder *MockGaugeMockRecorder
}
// MockGaugeMockRecorder is the mock recorder for MockGauge.
type MockGaugeMockRecorder struct {
mock *MockGauge
}
// NewMockGauge creates a new mock instance.
func NewMockGauge(ctrl *gomock.Controller) *MockGauge {
mock := &MockGauge{ctrl: ctrl}
mock.recorder = &MockGaugeMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockGauge) EXPECT() *MockGaugeMockRecorder {
return m.recorder
}
// Gauge mocks base method.
func (m *MockGauge) Gauge(value interface{}) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Gauge", value)
}
// Gauge indicates an expected call of Gauge.
func (mr *MockGaugeMockRecorder) Gauge(value interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Gauge", reflect.TypeOf((*MockGauge)(nil).Gauge), value)
}
// MockHistogram is a mock of Histogram interface.
type MockHistogram struct {
ctrl *gomock.Controller
recorder *MockHistogramMockRecorder
}
// MockHistogramMockRecorder is the mock recorder for MockHistogram.
type MockHistogramMockRecorder struct {
mock *MockHistogram
}
// NewMockHistogram creates a new mock instance.
func NewMockHistogram(ctrl *gomock.Controller) *MockHistogram {
mock := &MockHistogram{ctrl: ctrl}
mock.recorder = &MockHistogramMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockHistogram) EXPECT() *MockHistogramMockRecorder {
return m.recorder
}
// Observe mocks base method.
func (m *MockHistogram) Observe(value float64) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Observe", value)
}
// Observe indicates an expected call of Observe.
func (mr *MockHistogramMockRecorder) Observe(value interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Observe", reflect.TypeOf((*MockHistogram)(nil).Observe), value)
}
// MockTimer is a mock of Timer interface.
type MockTimer struct {
ctrl *gomock.Controller
recorder *MockTimerMockRecorder
}
// MockTimerMockRecorder is the mock recorder for MockTimer.
type MockTimerMockRecorder struct {
mock *MockTimer
}
// NewMockTimer creates a new mock instance.
func NewMockTimer(ctrl *gomock.Controller) *MockTimer {
mock := &MockTimer{ctrl: ctrl}
mock.recorder = &MockTimerMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockTimer) EXPECT() *MockTimerMockRecorder {
return m.recorder
}
// RecordDuration mocks base method.
func (m *MockTimer) RecordDuration() func() {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "RecordDuration")
ret0, _ := ret[0].(func())
return ret0
}
// RecordDuration indicates an expected call of RecordDuration.
func (mr *MockTimerMockRecorder) RecordDuration() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordDuration", reflect.TypeOf((*MockTimer)(nil).RecordDuration))
}
// SendTiming mocks base method.
func (m *MockTimer) SendTiming(duration time.Duration) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "SendTiming", duration)
}
// SendTiming indicates an expected call of SendTiming.
func (mr *MockTimerMockRecorder) SendTiming(duration interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendTiming", reflect.TypeOf((*MockTimer)(nil).SendTiming), duration)
}
// Since mocks base method.
func (m *MockTimer) Since(start time.Time) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Since", start)
}
// Since indicates an expected call of Since.
func (mr *MockTimerMockRecorder) Since(start interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Since", reflect.TypeOf((*MockTimer)(nil).Since), start)
}
// MockMeasurement is a mock of Measurement interface.
type MockMeasurement struct {
ctrl *gomock.Controller
recorder *MockMeasurementMockRecorder
}
// MockMeasurementMockRecorder is the mock recorder for MockMeasurement.
type MockMeasurementMockRecorder struct {
mock *MockMeasurement
}
// NewMockMeasurement creates a new mock instance.
func NewMockMeasurement(ctrl *gomock.Controller) *MockMeasurement {
mock := &MockMeasurement{ctrl: ctrl}
mock.recorder = &MockMeasurementMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockMeasurement) EXPECT() *MockMeasurementMockRecorder {
return m.recorder
}
// Count mocks base method.
func (m *MockMeasurement) Count(n int) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Count", n)
}
// Count indicates an expected call of Count.
func (mr *MockMeasurementMockRecorder) Count(n interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Count", reflect.TypeOf((*MockMeasurement)(nil).Count), n)
}
// Gauge mocks base method.
func (m *MockMeasurement) Gauge(value interface{}) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Gauge", value)
}
// Gauge indicates an expected call of Gauge.
func (mr *MockMeasurementMockRecorder) Gauge(value interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Gauge", reflect.TypeOf((*MockMeasurement)(nil).Gauge), value)
}
// Increment mocks base method.
func (m *MockMeasurement) Increment() {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Increment")
}
// Increment indicates an expected call of Increment.
func (mr *MockMeasurementMockRecorder) Increment() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Increment", reflect.TypeOf((*MockMeasurement)(nil).Increment))
}
// Observe mocks base method.
func (m *MockMeasurement) Observe(value float64) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Observe", value)
}
// Observe indicates an expected call of Observe.
func (mr *MockMeasurementMockRecorder) Observe(value interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Observe", reflect.TypeOf((*MockMeasurement)(nil).Observe), value)
}
// RecordDuration mocks base method.
func (m *MockMeasurement) RecordDuration() func() {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "RecordDuration")
ret0, _ := ret[0].(func())
return ret0
}
// RecordDuration indicates an expected call of RecordDuration.
func (mr *MockMeasurementMockRecorder) RecordDuration() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordDuration", reflect.TypeOf((*MockMeasurement)(nil).RecordDuration))
}
// SendTiming mocks base method.
func (m *MockMeasurement) SendTiming(duration time.Duration) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "SendTiming", duration)
}
// SendTiming indicates an expected call of SendTiming.
func (mr *MockMeasurementMockRecorder) SendTiming(duration interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendTiming", reflect.TypeOf((*MockMeasurement)(nil).SendTiming), duration)
}
// Since mocks base method.
func (m *MockMeasurement) Since(start time.Time) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "Since", start)
}
// Since indicates an expected call of Since.
func (mr *MockMeasurementMockRecorder) Since(start interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Since", reflect.TypeOf((*MockMeasurement)(nil).Since), start)
}