forked from nikoksr/notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock_option.go
65 lines (51 loc) · 1.68 KB
/
mock_option.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
// Code generated by mockery v2.43.2. DO NOT EDIT.
package mailgun
import mock "github.com/stretchr/testify/mock"
// mockOption is an autogenerated mock type for the Option type
type mockOption struct {
mock.Mock
}
type mockOption_Expecter struct {
mock *mock.Mock
}
func (_m *mockOption) EXPECT() *mockOption_Expecter {
return &mockOption_Expecter{mock: &_m.Mock}
}
// Execute provides a mock function with given fields: _a0
func (_m *mockOption) Execute(_a0 *Mailgun) {
_m.Called(_a0)
}
// mockOption_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'
type mockOption_Execute_Call struct {
*mock.Call
}
// Execute is a helper method to define mock.On call
// - _a0 *Mailgun
func (_e *mockOption_Expecter) Execute(_a0 interface{}) *mockOption_Execute_Call {
return &mockOption_Execute_Call{Call: _e.mock.On("Execute", _a0)}
}
func (_c *mockOption_Execute_Call) Run(run func(_a0 *Mailgun)) *mockOption_Execute_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(*Mailgun))
})
return _c
}
func (_c *mockOption_Execute_Call) Return() *mockOption_Execute_Call {
_c.Call.Return()
return _c
}
func (_c *mockOption_Execute_Call) RunAndReturn(run func(*Mailgun)) *mockOption_Execute_Call {
_c.Call.Return(run)
return _c
}
// newMockOption creates a new instance of mockOption. 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 newMockOption(t interface {
mock.TestingT
Cleanup(func())
}) *mockOption {
mock := &mockOption{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}