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