-
Notifications
You must be signed in to change notification settings - Fork 50
/
PartitionerRand.go
75 lines (58 loc) · 1.89 KB
/
PartitionerRand.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
// Code generated by mockery v2.22.1. DO NOT EDIT.
package mocks
import mock "github.com/stretchr/testify/mock"
// PartitionerRand is an autogenerated mock type for the PartitionerRand type
type PartitionerRand struct {
mock.Mock
}
type PartitionerRand_Expecter struct {
mock *mock.Mock
}
func (_m *PartitionerRand) EXPECT() *PartitionerRand_Expecter {
return &PartitionerRand_Expecter{mock: &_m.Mock}
}
// Intn provides a mock function with given fields: n
func (_m *PartitionerRand) Intn(n int) int {
ret := _m.Called(n)
var r0 int
if rf, ok := ret.Get(0).(func(int) int); ok {
r0 = rf(n)
} else {
r0 = ret.Get(0).(int)
}
return r0
}
// PartitionerRand_Intn_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Intn'
type PartitionerRand_Intn_Call struct {
*mock.Call
}
// Intn is a helper method to define mock.On call
// - n int
func (_e *PartitionerRand_Expecter) Intn(n interface{}) *PartitionerRand_Intn_Call {
return &PartitionerRand_Intn_Call{Call: _e.mock.On("Intn", n)}
}
func (_c *PartitionerRand_Intn_Call) Run(run func(n int)) *PartitionerRand_Intn_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(int))
})
return _c
}
func (_c *PartitionerRand_Intn_Call) Return(_a0 int) *PartitionerRand_Intn_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *PartitionerRand_Intn_Call) RunAndReturn(run func(int) int) *PartitionerRand_Intn_Call {
_c.Call.Return(run)
return _c
}
type mockConstructorTestingTNewPartitionerRand interface {
mock.TestingT
Cleanup(func())
}
// NewPartitionerRand creates a new instance of PartitionerRand. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewPartitionerRand(t mockConstructorTestingTNewPartitionerRand) *PartitionerRand {
mock := &PartitionerRand{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}