-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock_Wherer.go
54 lines (43 loc) · 1.14 KB
/
mock_Wherer.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
// Code generated by mockery. DO NOT EDIT.
package pagefilter
import mock "github.com/stretchr/testify/mock"
// MockWherer is an autogenerated mock type for the Wherer type
type MockWherer struct {
mock.Mock
}
// Where provides a mock function with given fields:
func (_m *MockWherer) 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
}
// NewMockWherer creates a new instance of MockWherer. 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 NewMockWherer(t interface {
mock.TestingT
Cleanup(func())
}) *MockWherer {
mock := &MockWherer{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}