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