-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfake_space_requirement.go
102 lines (89 loc) · 2.57 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
// This file was generated by counterfeiter
package requirementsfakes
import (
"sync"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/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
}
}
func (fake *FakeSpaceRequirement) Execute() error {
fake.executeMutex.Lock()
fake.executeArgsForCall = append(fake.executeArgsForCall, struct{}{})
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.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.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}
}
var _ requirements.SpaceRequirement = new(FakeSpaceRequirement)