forked from cloudfoundry-community/cloudfoundry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_enable_org_isolation_actor.go
118 lines (106 loc) · 4.81 KB
/
fake_enable_org_isolation_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
// Code generated by counterfeiter. DO NOT EDIT.
package v6fakes
import (
"sync"
"code.cloudfoundry.org/cli/actor/v3action"
v6 "code.cloudfoundry.org/cli/command/v6"
)
type FakeEnableOrgIsolationActor struct {
EntitleIsolationSegmentToOrganizationByNameStub func(string, string) (v3action.Warnings, error)
entitleIsolationSegmentToOrganizationByNameMutex sync.RWMutex
entitleIsolationSegmentToOrganizationByNameArgsForCall []struct {
arg1 string
arg2 string
}
entitleIsolationSegmentToOrganizationByNameReturns struct {
result1 v3action.Warnings
result2 error
}
entitleIsolationSegmentToOrganizationByNameReturnsOnCall map[int]struct {
result1 v3action.Warnings
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeEnableOrgIsolationActor) EntitleIsolationSegmentToOrganizationByName(arg1 string, arg2 string) (v3action.Warnings, error) {
fake.entitleIsolationSegmentToOrganizationByNameMutex.Lock()
ret, specificReturn := fake.entitleIsolationSegmentToOrganizationByNameReturnsOnCall[len(fake.entitleIsolationSegmentToOrganizationByNameArgsForCall)]
fake.entitleIsolationSegmentToOrganizationByNameArgsForCall = append(fake.entitleIsolationSegmentToOrganizationByNameArgsForCall, struct {
arg1 string
arg2 string
}{arg1, arg2})
fake.recordInvocation("EntitleIsolationSegmentToOrganizationByName", []interface{}{arg1, arg2})
fake.entitleIsolationSegmentToOrganizationByNameMutex.Unlock()
if fake.EntitleIsolationSegmentToOrganizationByNameStub != nil {
return fake.EntitleIsolationSegmentToOrganizationByNameStub(arg1, arg2)
}
if specificReturn {
return ret.result1, ret.result2
}
fakeReturns := fake.entitleIsolationSegmentToOrganizationByNameReturns
return fakeReturns.result1, fakeReturns.result2
}
func (fake *FakeEnableOrgIsolationActor) EntitleIsolationSegmentToOrganizationByNameCallCount() int {
fake.entitleIsolationSegmentToOrganizationByNameMutex.RLock()
defer fake.entitleIsolationSegmentToOrganizationByNameMutex.RUnlock()
return len(fake.entitleIsolationSegmentToOrganizationByNameArgsForCall)
}
func (fake *FakeEnableOrgIsolationActor) EntitleIsolationSegmentToOrganizationByNameCalls(stub func(string, string) (v3action.Warnings, error)) {
fake.entitleIsolationSegmentToOrganizationByNameMutex.Lock()
defer fake.entitleIsolationSegmentToOrganizationByNameMutex.Unlock()
fake.EntitleIsolationSegmentToOrganizationByNameStub = stub
}
func (fake *FakeEnableOrgIsolationActor) EntitleIsolationSegmentToOrganizationByNameArgsForCall(i int) (string, string) {
fake.entitleIsolationSegmentToOrganizationByNameMutex.RLock()
defer fake.entitleIsolationSegmentToOrganizationByNameMutex.RUnlock()
argsForCall := fake.entitleIsolationSegmentToOrganizationByNameArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *FakeEnableOrgIsolationActor) EntitleIsolationSegmentToOrganizationByNameReturns(result1 v3action.Warnings, result2 error) {
fake.entitleIsolationSegmentToOrganizationByNameMutex.Lock()
defer fake.entitleIsolationSegmentToOrganizationByNameMutex.Unlock()
fake.EntitleIsolationSegmentToOrganizationByNameStub = nil
fake.entitleIsolationSegmentToOrganizationByNameReturns = struct {
result1 v3action.Warnings
result2 error
}{result1, result2}
}
func (fake *FakeEnableOrgIsolationActor) EntitleIsolationSegmentToOrganizationByNameReturnsOnCall(i int, result1 v3action.Warnings, result2 error) {
fake.entitleIsolationSegmentToOrganizationByNameMutex.Lock()
defer fake.entitleIsolationSegmentToOrganizationByNameMutex.Unlock()
fake.EntitleIsolationSegmentToOrganizationByNameStub = nil
if fake.entitleIsolationSegmentToOrganizationByNameReturnsOnCall == nil {
fake.entitleIsolationSegmentToOrganizationByNameReturnsOnCall = make(map[int]struct {
result1 v3action.Warnings
result2 error
})
}
fake.entitleIsolationSegmentToOrganizationByNameReturnsOnCall[i] = struct {
result1 v3action.Warnings
result2 error
}{result1, result2}
}
func (fake *FakeEnableOrgIsolationActor) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.entitleIsolationSegmentToOrganizationByNameMutex.RLock()
defer fake.entitleIsolationSegmentToOrganizationByNameMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeEnableOrgIsolationActor) 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.EnableOrgIsolationActor = new(FakeEnableOrgIsolationActor)