forked from cloudfoundry-community/cloudfoundry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_create_service_broker_actor.go
129 lines (117 loc) · 4.48 KB
/
fake_create_service_broker_actor.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
// Code generated by counterfeiter. DO NOT EDIT.
package v6fakes
import (
"sync"
"code.cloudfoundry.org/cli/actor/v2action"
v6 "code.cloudfoundry.org/cli/command/v6"
)
type FakeCreateServiceBrokerActor struct {
CreateServiceBrokerStub func(string, string, string, string, string) (v2action.ServiceBroker, v2action.Warnings, error)
createServiceBrokerMutex sync.RWMutex
createServiceBrokerArgsForCall []struct {
arg1 string
arg2 string
arg3 string
arg4 string
arg5 string
}
createServiceBrokerReturns struct {
result1 v2action.ServiceBroker
result2 v2action.Warnings
result3 error
}
createServiceBrokerReturnsOnCall map[int]struct {
result1 v2action.ServiceBroker
result2 v2action.Warnings
result3 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeCreateServiceBrokerActor) CreateServiceBroker(arg1 string, arg2 string, arg3 string, arg4 string, arg5 string) (v2action.ServiceBroker, v2action.Warnings, error) {
fake.createServiceBrokerMutex.Lock()
ret, specificReturn := fake.createServiceBrokerReturnsOnCall[len(fake.createServiceBrokerArgsForCall)]
fake.createServiceBrokerArgsForCall = append(fake.createServiceBrokerArgsForCall, struct {
arg1 string
arg2 string
arg3 string
arg4 string
arg5 string
}{arg1, arg2, arg3, arg4, arg5})
fake.recordInvocation("CreateServiceBroker", []interface{}{arg1, arg2, arg3, arg4, arg5})
fake.createServiceBrokerMutex.Unlock()
if fake.CreateServiceBrokerStub != nil {
return fake.CreateServiceBrokerStub(arg1, arg2, arg3, arg4, arg5)
}
if specificReturn {
return ret.result1, ret.result2, ret.result3
}
fakeReturns := fake.createServiceBrokerReturns
return fakeReturns.result1, fakeReturns.result2, fakeReturns.result3
}
func (fake *FakeCreateServiceBrokerActor) CreateServiceBrokerCallCount() int {
fake.createServiceBrokerMutex.RLock()
defer fake.createServiceBrokerMutex.RUnlock()
return len(fake.createServiceBrokerArgsForCall)
}
func (fake *FakeCreateServiceBrokerActor) CreateServiceBrokerCalls(stub func(string, string, string, string, string) (v2action.ServiceBroker, v2action.Warnings, error)) {
fake.createServiceBrokerMutex.Lock()
defer fake.createServiceBrokerMutex.Unlock()
fake.CreateServiceBrokerStub = stub
}
func (fake *FakeCreateServiceBrokerActor) CreateServiceBrokerArgsForCall(i int) (string, string, string, string, string) {
fake.createServiceBrokerMutex.RLock()
defer fake.createServiceBrokerMutex.RUnlock()
argsForCall := fake.createServiceBrokerArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2, argsForCall.arg3, argsForCall.arg4, argsForCall.arg5
}
func (fake *FakeCreateServiceBrokerActor) CreateServiceBrokerReturns(result1 v2action.ServiceBroker, result2 v2action.Warnings, result3 error) {
fake.createServiceBrokerMutex.Lock()
defer fake.createServiceBrokerMutex.Unlock()
fake.CreateServiceBrokerStub = nil
fake.createServiceBrokerReturns = struct {
result1 v2action.ServiceBroker
result2 v2action.Warnings
result3 error
}{result1, result2, result3}
}
func (fake *FakeCreateServiceBrokerActor) CreateServiceBrokerReturnsOnCall(i int, result1 v2action.ServiceBroker, result2 v2action.Warnings, result3 error) {
fake.createServiceBrokerMutex.Lock()
defer fake.createServiceBrokerMutex.Unlock()
fake.CreateServiceBrokerStub = nil
if fake.createServiceBrokerReturnsOnCall == nil {
fake.createServiceBrokerReturnsOnCall = make(map[int]struct {
result1 v2action.ServiceBroker
result2 v2action.Warnings
result3 error
})
}
fake.createServiceBrokerReturnsOnCall[i] = struct {
result1 v2action.ServiceBroker
result2 v2action.Warnings
result3 error
}{result1, result2, result3}
}
func (fake *FakeCreateServiceBrokerActor) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.createServiceBrokerMutex.RLock()
defer fake.createServiceBrokerMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeCreateServiceBrokerActor) 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 _ v6.CreateServiceBrokerActor = new(FakeCreateServiceBrokerActor)