-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathmock_SupportedFailureReasonMapper.go
78 lines (61 loc) · 2.46 KB
/
mock_SupportedFailureReasonMapper.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
// Code generated by mockery v2.53.3. DO NOT EDIT.
package common
import mock "github.com/stretchr/testify/mock"
// MockSupportedFailureReasonMapper is an autogenerated mock type for the SupportedFailureReasonMapper type
type MockSupportedFailureReasonMapper struct {
mock.Mock
}
type MockSupportedFailureReasonMapper_Expecter struct {
mock *mock.Mock
}
func (_m *MockSupportedFailureReasonMapper) EXPECT() *MockSupportedFailureReasonMapper_Expecter {
return &MockSupportedFailureReasonMapper_Expecter{mock: &_m.Mock}
}
// Map provides a mock function with given fields: fr
func (_m *MockSupportedFailureReasonMapper) Map(fr JobFailureReason) JobFailureReason {
ret := _m.Called(fr)
if len(ret) == 0 {
panic("no return value specified for Map")
}
var r0 JobFailureReason
if rf, ok := ret.Get(0).(func(JobFailureReason) JobFailureReason); ok {
r0 = rf(fr)
} else {
r0 = ret.Get(0).(JobFailureReason)
}
return r0
}
// MockSupportedFailureReasonMapper_Map_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Map'
type MockSupportedFailureReasonMapper_Map_Call struct {
*mock.Call
}
// Map is a helper method to define mock.On call
// - fr JobFailureReason
func (_e *MockSupportedFailureReasonMapper_Expecter) Map(fr interface{}) *MockSupportedFailureReasonMapper_Map_Call {
return &MockSupportedFailureReasonMapper_Map_Call{Call: _e.mock.On("Map", fr)}
}
func (_c *MockSupportedFailureReasonMapper_Map_Call) Run(run func(fr JobFailureReason)) *MockSupportedFailureReasonMapper_Map_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(JobFailureReason))
})
return _c
}
func (_c *MockSupportedFailureReasonMapper_Map_Call) Return(_a0 JobFailureReason) *MockSupportedFailureReasonMapper_Map_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockSupportedFailureReasonMapper_Map_Call) RunAndReturn(run func(JobFailureReason) JobFailureReason) *MockSupportedFailureReasonMapper_Map_Call {
_c.Call.Return(run)
return _c
}
// NewMockSupportedFailureReasonMapper creates a new instance of MockSupportedFailureReasonMapper. 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 NewMockSupportedFailureReasonMapper(t interface {
mock.TestingT
Cleanup(func())
}) *MockSupportedFailureReasonMapper {
mock := &MockSupportedFailureReasonMapper{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}