-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmock_WhereTyper.go
72 lines (57 loc) · 1.54 KB
/
mock_WhereTyper.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
// Code generated by mockery. DO NOT EDIT.
package patcher
import mock "github.com/stretchr/testify/mock"
// MockWhereTyper is an autogenerated mock type for the WhereTyper type
type MockWhereTyper struct {
mock.Mock
}
// Where provides a mock function with given fields:
func (_m *MockWhereTyper) Where() (string, []interface{}) {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for Where")
}
var r0 string
var r1 []interface{}
if rf, ok := ret.Get(0).(func() (string, []interface{})); ok {
return rf()
}
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
if rf, ok := ret.Get(1).(func() []interface{}); ok {
r1 = rf()
} else {
if ret.Get(1) != nil {
r1 = ret.Get(1).([]interface{})
}
}
return r0, r1
}
// WhereType provides a mock function with given fields:
func (_m *MockWhereTyper) WhereType() WhereType {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for WhereType")
}
var r0 WhereType
if rf, ok := ret.Get(0).(func() WhereType); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(WhereType)
}
return r0
}
// NewMockWhereTyper creates a new instance of MockWhereTyper. 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 NewMockWhereTyper(t interface {
mock.TestingT
Cleanup(func())
}) *MockWhereTyper {
mock := &MockWhereTyper{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}