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