forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_organization_requirement.go
102 lines (89 loc) · 2.94 KB
/
fake_organization_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 FakeOrganizationRequirement struct {
ExecuteStub func() error
executeMutex sync.RWMutex
executeArgsForCall []struct{}
executeReturns struct {
result1 error
}
SetOrganizationNameStub func(string)
setOrganizationNameMutex sync.RWMutex
setOrganizationNameArgsForCall []struct {
arg1 string
}
GetOrganizationStub func() models.Organization
getOrganizationMutex sync.RWMutex
getOrganizationArgsForCall []struct{}
getOrganizationReturns struct {
result1 models.Organization
}
}
func (fake *FakeOrganizationRequirement) 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 *FakeOrganizationRequirement) ExecuteCallCount() int {
fake.executeMutex.RLock()
defer fake.executeMutex.RUnlock()
return len(fake.executeArgsForCall)
}
func (fake *FakeOrganizationRequirement) ExecuteReturns(result1 error) {
fake.ExecuteStub = nil
fake.executeReturns = struct {
result1 error
}{result1}
}
func (fake *FakeOrganizationRequirement) SetOrganizationName(arg1 string) {
fake.setOrganizationNameMutex.Lock()
fake.setOrganizationNameArgsForCall = append(fake.setOrganizationNameArgsForCall, struct {
arg1 string
}{arg1})
fake.setOrganizationNameMutex.Unlock()
if fake.SetOrganizationNameStub != nil {
fake.SetOrganizationNameStub(arg1)
}
}
func (fake *FakeOrganizationRequirement) SetOrganizationNameCallCount() int {
fake.setOrganizationNameMutex.RLock()
defer fake.setOrganizationNameMutex.RUnlock()
return len(fake.setOrganizationNameArgsForCall)
}
func (fake *FakeOrganizationRequirement) SetOrganizationNameArgsForCall(i int) string {
fake.setOrganizationNameMutex.RLock()
defer fake.setOrganizationNameMutex.RUnlock()
return fake.setOrganizationNameArgsForCall[i].arg1
}
func (fake *FakeOrganizationRequirement) GetOrganization() models.Organization {
fake.getOrganizationMutex.Lock()
fake.getOrganizationArgsForCall = append(fake.getOrganizationArgsForCall, struct{}{})
fake.getOrganizationMutex.Unlock()
if fake.GetOrganizationStub != nil {
return fake.GetOrganizationStub()
} else {
return fake.getOrganizationReturns.result1
}
}
func (fake *FakeOrganizationRequirement) GetOrganizationCallCount() int {
fake.getOrganizationMutex.RLock()
defer fake.getOrganizationMutex.RUnlock()
return len(fake.getOrganizationArgsForCall)
}
func (fake *FakeOrganizationRequirement) GetOrganizationReturns(result1 models.Organization) {
fake.GetOrganizationStub = nil
fake.getOrganizationReturns = struct {
result1 models.Organization
}{result1}
}
var _ requirements.OrganizationRequirement = new(FakeOrganizationRequirement)