-
Notifications
You must be signed in to change notification settings - Fork 35
/
OfficeListFetcher.go
81 lines (65 loc) · 2.86 KB
/
OfficeListFetcher.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
// Code generated by mockery. DO NOT EDIT.
package mocks
import (
mock "github.com/stretchr/testify/mock"
appcontext "github.com/transcom/mymove/pkg/appcontext"
models "github.com/transcom/mymove/pkg/models"
services "github.com/transcom/mymove/pkg/services"
)
// OfficeListFetcher is an autogenerated mock type for the OfficeListFetcher type
type OfficeListFetcher struct {
mock.Mock
}
// FetchOfficeCount provides a mock function with given fields: appCtx, filters
func (_m *OfficeListFetcher) FetchOfficeCount(appCtx appcontext.AppContext, filters []services.QueryFilter) (int, error) {
ret := _m.Called(appCtx, filters)
var r0 int
var r1 error
if rf, ok := ret.Get(0).(func(appcontext.AppContext, []services.QueryFilter) (int, error)); ok {
return rf(appCtx, filters)
}
if rf, ok := ret.Get(0).(func(appcontext.AppContext, []services.QueryFilter) int); ok {
r0 = rf(appCtx, filters)
} else {
r0 = ret.Get(0).(int)
}
if rf, ok := ret.Get(1).(func(appcontext.AppContext, []services.QueryFilter) error); ok {
r1 = rf(appCtx, filters)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// FetchOfficeList provides a mock function with given fields: appCtx, filters, associations, pagination, ordering
func (_m *OfficeListFetcher) FetchOfficeList(appCtx appcontext.AppContext, filters []services.QueryFilter, associations services.QueryAssociations, pagination services.Pagination, ordering services.QueryOrder) (models.TransportationOffices, error) {
ret := _m.Called(appCtx, filters, associations, pagination, ordering)
var r0 models.TransportationOffices
var r1 error
if rf, ok := ret.Get(0).(func(appcontext.AppContext, []services.QueryFilter, services.QueryAssociations, services.Pagination, services.QueryOrder) (models.TransportationOffices, error)); ok {
return rf(appCtx, filters, associations, pagination, ordering)
}
if rf, ok := ret.Get(0).(func(appcontext.AppContext, []services.QueryFilter, services.QueryAssociations, services.Pagination, services.QueryOrder) models.TransportationOffices); ok {
r0 = rf(appCtx, filters, associations, pagination, ordering)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(models.TransportationOffices)
}
}
if rf, ok := ret.Get(1).(func(appcontext.AppContext, []services.QueryFilter, services.QueryAssociations, services.Pagination, services.QueryOrder) error); ok {
r1 = rf(appCtx, filters, associations, pagination, ordering)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// NewOfficeListFetcher creates a new instance of OfficeListFetcher. 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 NewOfficeListFetcher(t interface {
mock.TestingT
Cleanup(func())
}) *OfficeListFetcher {
mock := &OfficeListFetcher{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}