forked from cloudfoundry-community/cloudfoundry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_targeted_org_requirement.go
100 lines (88 loc) · 3.03 KB
/
fake_targeted_org_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
// This file was generated by counterfeiter
package requirementsfakes
import (
"sync"
"code.cloudfoundry.org/cli/cf/models"
"code.cloudfoundry.org/cli/cf/requirements"
)
type FakeTargetedOrgRequirement struct {
ExecuteStub func() error
executeMutex sync.RWMutex
executeArgsForCall []struct{}
executeReturns struct {
result1 error
}
GetOrganizationFieldsStub func() models.OrganizationFields
getOrganizationFieldsMutex sync.RWMutex
getOrganizationFieldsArgsForCall []struct{}
getOrganizationFieldsReturns struct {
result1 models.OrganizationFields
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeTargetedOrgRequirement) 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 *FakeTargetedOrgRequirement) ExecuteCallCount() int {
fake.executeMutex.RLock()
defer fake.executeMutex.RUnlock()
return len(fake.executeArgsForCall)
}
func (fake *FakeTargetedOrgRequirement) ExecuteReturns(result1 error) {
fake.ExecuteStub = nil
fake.executeReturns = struct {
result1 error
}{result1}
}
func (fake *FakeTargetedOrgRequirement) GetOrganizationFields() models.OrganizationFields {
fake.getOrganizationFieldsMutex.Lock()
fake.getOrganizationFieldsArgsForCall = append(fake.getOrganizationFieldsArgsForCall, struct{}{})
fake.recordInvocation("GetOrganizationFields", []interface{}{})
fake.getOrganizationFieldsMutex.Unlock()
if fake.GetOrganizationFieldsStub != nil {
return fake.GetOrganizationFieldsStub()
} else {
return fake.getOrganizationFieldsReturns.result1
}
}
func (fake *FakeTargetedOrgRequirement) GetOrganizationFieldsCallCount() int {
fake.getOrganizationFieldsMutex.RLock()
defer fake.getOrganizationFieldsMutex.RUnlock()
return len(fake.getOrganizationFieldsArgsForCall)
}
func (fake *FakeTargetedOrgRequirement) GetOrganizationFieldsReturns(result1 models.OrganizationFields) {
fake.GetOrganizationFieldsStub = nil
fake.getOrganizationFieldsReturns = struct {
result1 models.OrganizationFields
}{result1}
}
func (fake *FakeTargetedOrgRequirement) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.executeMutex.RLock()
defer fake.executeMutex.RUnlock()
fake.getOrganizationFieldsMutex.RLock()
defer fake.getOrganizationFieldsMutex.RUnlock()
return fake.invocations
}
func (fake *FakeTargetedOrgRequirement) 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.TargetedOrgRequirement = new(FakeTargetedOrgRequirement)