-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfake_deaapplication_requirement.go
74 lines (64 loc) · 2.01 KB
/
fake_deaapplication_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
// This file was generated by counterfeiter
package requirementsfakes
import (
"sync"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/cli/cf/requirements"
)
type FakeDEAApplicationRequirement struct {
ExecuteStub func() error
executeMutex sync.RWMutex
executeArgsForCall []struct{}
executeReturns struct {
result1 error
}
GetApplicationStub func() models.Application
getApplicationMutex sync.RWMutex
getApplicationArgsForCall []struct{}
getApplicationReturns struct {
result1 models.Application
}
}
func (fake *FakeDEAApplicationRequirement) 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 *FakeDEAApplicationRequirement) ExecuteCallCount() int {
fake.executeMutex.RLock()
defer fake.executeMutex.RUnlock()
return len(fake.executeArgsForCall)
}
func (fake *FakeDEAApplicationRequirement) ExecuteReturns(result1 error) {
fake.ExecuteStub = nil
fake.executeReturns = struct {
result1 error
}{result1}
}
func (fake *FakeDEAApplicationRequirement) GetApplication() models.Application {
fake.getApplicationMutex.Lock()
fake.getApplicationArgsForCall = append(fake.getApplicationArgsForCall, struct{}{})
fake.getApplicationMutex.Unlock()
if fake.GetApplicationStub != nil {
return fake.GetApplicationStub()
} else {
return fake.getApplicationReturns.result1
}
}
func (fake *FakeDEAApplicationRequirement) GetApplicationCallCount() int {
fake.getApplicationMutex.RLock()
defer fake.getApplicationMutex.RUnlock()
return len(fake.getApplicationArgsForCall)
}
func (fake *FakeDEAApplicationRequirement) GetApplicationReturns(result1 models.Application) {
fake.GetApplicationStub = nil
fake.getApplicationReturns = struct {
result1 models.Application
}{result1}
}
var _ requirements.DEAApplicationRequirement = new(FakeDEAApplicationRequirement)