forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_route_service_unbinder.go
79 lines (69 loc) · 2.43 KB
/
fake_route_service_unbinder.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
// This file was generated by counterfeiter
package servicefakes
import (
"sync"
"code.cloudfoundry.org/cli/cf/commands/service"
"code.cloudfoundry.org/cli/cf/models"
)
type FakeRouteServiceUnbinder struct {
UnbindRouteStub func(route models.Route, serviceInstance models.ServiceInstance) error
unbindRouteMutex sync.RWMutex
unbindRouteArgsForCall []struct {
route models.Route
serviceInstance models.ServiceInstance
}
unbindRouteReturns struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeRouteServiceUnbinder) UnbindRoute(route models.Route, serviceInstance models.ServiceInstance) error {
fake.unbindRouteMutex.Lock()
fake.unbindRouteArgsForCall = append(fake.unbindRouteArgsForCall, struct {
route models.Route
serviceInstance models.ServiceInstance
}{route, serviceInstance})
fake.recordInvocation("UnbindRoute", []interface{}{route, serviceInstance})
fake.unbindRouteMutex.Unlock()
if fake.UnbindRouteStub != nil {
return fake.UnbindRouteStub(route, serviceInstance)
} else {
return fake.unbindRouteReturns.result1
}
}
func (fake *FakeRouteServiceUnbinder) UnbindRouteCallCount() int {
fake.unbindRouteMutex.RLock()
defer fake.unbindRouteMutex.RUnlock()
return len(fake.unbindRouteArgsForCall)
}
func (fake *FakeRouteServiceUnbinder) UnbindRouteArgsForCall(i int) (models.Route, models.ServiceInstance) {
fake.unbindRouteMutex.RLock()
defer fake.unbindRouteMutex.RUnlock()
return fake.unbindRouteArgsForCall[i].route, fake.unbindRouteArgsForCall[i].serviceInstance
}
func (fake *FakeRouteServiceUnbinder) UnbindRouteReturns(result1 error) {
fake.UnbindRouteStub = nil
fake.unbindRouteReturns = struct {
result1 error
}{result1}
}
func (fake *FakeRouteServiceUnbinder) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.unbindRouteMutex.RLock()
defer fake.unbindRouteMutex.RUnlock()
return fake.invocations
}
func (fake *FakeRouteServiceUnbinder) 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 _ service.RouteServiceUnbinder = new(FakeRouteServiceUnbinder)