forked from cloudfoundry-community/cloudfoundry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_service_plan_visibility_repository.go
202 lines (181 loc) · 5.72 KB
/
fake_service_plan_visibility_repository.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
// This file was generated by counterfeiter
package apifakes
import (
"sync"
"code.cloudfoundry.org/cli/cf/api"
"code.cloudfoundry.org/cli/cf/models"
)
type FakeServicePlanVisibilityRepository struct {
CreateStub func(string, string) error
createMutex sync.RWMutex
createArgsForCall []struct {
arg1 string
arg2 string
}
createReturns struct {
result1 error
}
ListStub func() ([]models.ServicePlanVisibilityFields, error)
listMutex sync.RWMutex
listArgsForCall []struct{}
listReturns struct {
result1 []models.ServicePlanVisibilityFields
result2 error
}
DeleteStub func(string) error
deleteMutex sync.RWMutex
deleteArgsForCall []struct {
arg1 string
}
deleteReturns struct {
result1 error
}
SearchStub func(map[string]string) ([]models.ServicePlanVisibilityFields, error)
searchMutex sync.RWMutex
searchArgsForCall []struct {
arg1 map[string]string
}
searchReturns struct {
result1 []models.ServicePlanVisibilityFields
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeServicePlanVisibilityRepository) Create(arg1 string, arg2 string) error {
fake.createMutex.Lock()
fake.createArgsForCall = append(fake.createArgsForCall, struct {
arg1 string
arg2 string
}{arg1, arg2})
fake.recordInvocation("Create", []interface{}{arg1, arg2})
fake.createMutex.Unlock()
if fake.CreateStub != nil {
return fake.CreateStub(arg1, arg2)
} else {
return fake.createReturns.result1
}
}
func (fake *FakeServicePlanVisibilityRepository) CreateCallCount() int {
fake.createMutex.RLock()
defer fake.createMutex.RUnlock()
return len(fake.createArgsForCall)
}
func (fake *FakeServicePlanVisibilityRepository) CreateArgsForCall(i int) (string, string) {
fake.createMutex.RLock()
defer fake.createMutex.RUnlock()
return fake.createArgsForCall[i].arg1, fake.createArgsForCall[i].arg2
}
func (fake *FakeServicePlanVisibilityRepository) CreateReturns(result1 error) {
fake.CreateStub = nil
fake.createReturns = struct {
result1 error
}{result1}
}
func (fake *FakeServicePlanVisibilityRepository) List() ([]models.ServicePlanVisibilityFields, error) {
fake.listMutex.Lock()
fake.listArgsForCall = append(fake.listArgsForCall, struct{}{})
fake.recordInvocation("List", []interface{}{})
fake.listMutex.Unlock()
if fake.ListStub != nil {
return fake.ListStub()
} else {
return fake.listReturns.result1, fake.listReturns.result2
}
}
func (fake *FakeServicePlanVisibilityRepository) ListCallCount() int {
fake.listMutex.RLock()
defer fake.listMutex.RUnlock()
return len(fake.listArgsForCall)
}
func (fake *FakeServicePlanVisibilityRepository) ListReturns(result1 []models.ServicePlanVisibilityFields, result2 error) {
fake.ListStub = nil
fake.listReturns = struct {
result1 []models.ServicePlanVisibilityFields
result2 error
}{result1, result2}
}
func (fake *FakeServicePlanVisibilityRepository) Delete(arg1 string) error {
fake.deleteMutex.Lock()
fake.deleteArgsForCall = append(fake.deleteArgsForCall, struct {
arg1 string
}{arg1})
fake.recordInvocation("Delete", []interface{}{arg1})
fake.deleteMutex.Unlock()
if fake.DeleteStub != nil {
return fake.DeleteStub(arg1)
} else {
return fake.deleteReturns.result1
}
}
func (fake *FakeServicePlanVisibilityRepository) DeleteCallCount() int {
fake.deleteMutex.RLock()
defer fake.deleteMutex.RUnlock()
return len(fake.deleteArgsForCall)
}
func (fake *FakeServicePlanVisibilityRepository) DeleteArgsForCall(i int) string {
fake.deleteMutex.RLock()
defer fake.deleteMutex.RUnlock()
return fake.deleteArgsForCall[i].arg1
}
func (fake *FakeServicePlanVisibilityRepository) DeleteReturns(result1 error) {
fake.DeleteStub = nil
fake.deleteReturns = struct {
result1 error
}{result1}
}
func (fake *FakeServicePlanVisibilityRepository) Search(arg1 map[string]string) ([]models.ServicePlanVisibilityFields, error) {
fake.searchMutex.Lock()
fake.searchArgsForCall = append(fake.searchArgsForCall, struct {
arg1 map[string]string
}{arg1})
fake.recordInvocation("Search", []interface{}{arg1})
fake.searchMutex.Unlock()
if fake.SearchStub != nil {
return fake.SearchStub(arg1)
} else {
return fake.searchReturns.result1, fake.searchReturns.result2
}
}
func (fake *FakeServicePlanVisibilityRepository) SearchCallCount() int {
fake.searchMutex.RLock()
defer fake.searchMutex.RUnlock()
return len(fake.searchArgsForCall)
}
func (fake *FakeServicePlanVisibilityRepository) SearchArgsForCall(i int) map[string]string {
fake.searchMutex.RLock()
defer fake.searchMutex.RUnlock()
return fake.searchArgsForCall[i].arg1
}
func (fake *FakeServicePlanVisibilityRepository) SearchReturns(result1 []models.ServicePlanVisibilityFields, result2 error) {
fake.SearchStub = nil
fake.searchReturns = struct {
result1 []models.ServicePlanVisibilityFields
result2 error
}{result1, result2}
}
func (fake *FakeServicePlanVisibilityRepository) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.createMutex.RLock()
defer fake.createMutex.RUnlock()
fake.listMutex.RLock()
defer fake.listMutex.RUnlock()
fake.deleteMutex.RLock()
defer fake.deleteMutex.RUnlock()
fake.searchMutex.RLock()
defer fake.searchMutex.RUnlock()
return fake.invocations
}
func (fake *FakeServicePlanVisibilityRepository) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
var _ api.ServicePlanVisibilityRepository = new(FakeServicePlanVisibilityRepository)