forked from cloudfoundry-community/cloudfoundry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_space_requirement.go
131 lines (116 loc) · 3.54 KB
/
fake_space_requirement.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
// This file was generated by counterfeiter
package requirementsfakes
import (
"sync"
"code.cloudfoundry.org/cli/cf/models"
"code.cloudfoundry.org/cli/cf/requirements"
)
type FakeSpaceRequirement struct {
ExecuteStub func() error
executeMutex sync.RWMutex
executeArgsForCall []struct{}
executeReturns struct {
result1 error
}
SetSpaceNameStub func(string)
setSpaceNameMutex sync.RWMutex
setSpaceNameArgsForCall []struct {
arg1 string
}
GetSpaceStub func() models.Space
getSpaceMutex sync.RWMutex
getSpaceArgsForCall []struct{}
getSpaceReturns struct {
result1 models.Space
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeSpaceRequirement) Execute() error {
fake.executeMutex.Lock()
fake.executeArgsForCall = append(fake.executeArgsForCall, struct{}{})
fake.recordInvocation("Execute", []interface{}{})
fake.executeMutex.Unlock()
if fake.ExecuteStub != nil {
return fake.ExecuteStub()
} else {
return fake.executeReturns.result1
}
}
func (fake *FakeSpaceRequirement) ExecuteCallCount() int {
fake.executeMutex.RLock()
defer fake.executeMutex.RUnlock()
return len(fake.executeArgsForCall)
}
func (fake *FakeSpaceRequirement) ExecuteReturns(result1 error) {
fake.ExecuteStub = nil
fake.executeReturns = struct {
result1 error
}{result1}
}
func (fake *FakeSpaceRequirement) SetSpaceName(arg1 string) {
fake.setSpaceNameMutex.Lock()
fake.setSpaceNameArgsForCall = append(fake.setSpaceNameArgsForCall, struct {
arg1 string
}{arg1})
fake.recordInvocation("SetSpaceName", []interface{}{arg1})
fake.setSpaceNameMutex.Unlock()
if fake.SetSpaceNameStub != nil {
fake.SetSpaceNameStub(arg1)
}
}
func (fake *FakeSpaceRequirement) SetSpaceNameCallCount() int {
fake.setSpaceNameMutex.RLock()
defer fake.setSpaceNameMutex.RUnlock()
return len(fake.setSpaceNameArgsForCall)
}
func (fake *FakeSpaceRequirement) SetSpaceNameArgsForCall(i int) string {
fake.setSpaceNameMutex.RLock()
defer fake.setSpaceNameMutex.RUnlock()
return fake.setSpaceNameArgsForCall[i].arg1
}
func (fake *FakeSpaceRequirement) GetSpace() models.Space {
fake.getSpaceMutex.Lock()
fake.getSpaceArgsForCall = append(fake.getSpaceArgsForCall, struct{}{})
fake.recordInvocation("GetSpace", []interface{}{})
fake.getSpaceMutex.Unlock()
if fake.GetSpaceStub != nil {
return fake.GetSpaceStub()
} else {
return fake.getSpaceReturns.result1
}
}
func (fake *FakeSpaceRequirement) GetSpaceCallCount() int {
fake.getSpaceMutex.RLock()
defer fake.getSpaceMutex.RUnlock()
return len(fake.getSpaceArgsForCall)
}
func (fake *FakeSpaceRequirement) GetSpaceReturns(result1 models.Space) {
fake.GetSpaceStub = nil
fake.getSpaceReturns = struct {
result1 models.Space
}{result1}
}
func (fake *FakeSpaceRequirement) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.executeMutex.RLock()
defer fake.executeMutex.RUnlock()
fake.setSpaceNameMutex.RLock()
defer fake.setSpaceNameMutex.RUnlock()
fake.getSpaceMutex.RLock()
defer fake.getSpaceMutex.RUnlock()
return fake.invocations
}
func (fake *FakeSpaceRequirement) 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 _ requirements.SpaceRequirement = new(FakeSpaceRequirement)