forked from goravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGroupFunc.go
68 lines (54 loc) · 1.75 KB
/
GroupFunc.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
// Code generated by mockery. DO NOT EDIT.
package route
import (
route "github.com/goravel/framework/contracts/route"
mock "github.com/stretchr/testify/mock"
)
// GroupFunc is an autogenerated mock type for the GroupFunc type
type GroupFunc struct {
mock.Mock
}
type GroupFunc_Expecter struct {
mock *mock.Mock
}
func (_m *GroupFunc) EXPECT() *GroupFunc_Expecter {
return &GroupFunc_Expecter{mock: &_m.Mock}
}
// Execute provides a mock function with given fields: router
func (_m *GroupFunc) Execute(router route.Router) {
_m.Called(router)
}
// GroupFunc_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'
type GroupFunc_Execute_Call struct {
*mock.Call
}
// Execute is a helper method to define mock.On call
// - router route.Router
func (_e *GroupFunc_Expecter) Execute(router interface{}) *GroupFunc_Execute_Call {
return &GroupFunc_Execute_Call{Call: _e.mock.On("Execute", router)}
}
func (_c *GroupFunc_Execute_Call) Run(run func(router route.Router)) *GroupFunc_Execute_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(route.Router))
})
return _c
}
func (_c *GroupFunc_Execute_Call) Return() *GroupFunc_Execute_Call {
_c.Call.Return()
return _c
}
func (_c *GroupFunc_Execute_Call) RunAndReturn(run func(route.Router)) *GroupFunc_Execute_Call {
_c.Call.Return(run)
return _c
}
// NewGroupFunc creates a new instance of GroupFunc. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewGroupFunc(t interface {
mock.TestingT
Cleanup(func())
}) *GroupFunc {
mock := &GroupFunc{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}