-
Notifications
You must be signed in to change notification settings - Fork 178
/
chunk_request_history_updater_func.go
60 lines (47 loc) · 1.63 KB
/
chunk_request_history_updater_func.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
// Code generated by mockery v2.21.4. DO NOT EDIT.
package mempool
import (
time "time"
mock "github.com/stretchr/testify/mock"
)
// ChunkRequestHistoryUpdaterFunc is an autogenerated mock type for the ChunkRequestHistoryUpdaterFunc type
type ChunkRequestHistoryUpdaterFunc struct {
mock.Mock
}
// Execute provides a mock function with given fields: _a0, _a1
func (_m *ChunkRequestHistoryUpdaterFunc) Execute(_a0 uint64, _a1 time.Duration) (uint64, time.Duration, bool) {
ret := _m.Called(_a0, _a1)
var r0 uint64
var r1 time.Duration
var r2 bool
if rf, ok := ret.Get(0).(func(uint64, time.Duration) (uint64, time.Duration, bool)); ok {
return rf(_a0, _a1)
}
if rf, ok := ret.Get(0).(func(uint64, time.Duration) uint64); ok {
r0 = rf(_a0, _a1)
} else {
r0 = ret.Get(0).(uint64)
}
if rf, ok := ret.Get(1).(func(uint64, time.Duration) time.Duration); ok {
r1 = rf(_a0, _a1)
} else {
r1 = ret.Get(1).(time.Duration)
}
if rf, ok := ret.Get(2).(func(uint64, time.Duration) bool); ok {
r2 = rf(_a0, _a1)
} else {
r2 = ret.Get(2).(bool)
}
return r0, r1, r2
}
type mockConstructorTestingTNewChunkRequestHistoryUpdaterFunc interface {
mock.TestingT
Cleanup(func())
}
// NewChunkRequestHistoryUpdaterFunc creates a new instance of ChunkRequestHistoryUpdaterFunc. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewChunkRequestHistoryUpdaterFunc(t mockConstructorTestingTNewChunkRequestHistoryUpdaterFunc) *ChunkRequestHistoryUpdaterFunc {
mock := &ChunkRequestHistoryUpdaterFunc{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}