forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_terminal_output_switch.go
64 lines (55 loc) · 1.95 KB
/
fake_terminal_output_switch.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
// This file was generated by counterfeiter
package rpcfakes
import (
"sync"
"code.cloudfoundry.org/cli/plugin/rpc"
)
type FakeTerminalOutputSwitch struct {
DisableTerminalOutputStub func(bool)
disableTerminalOutputMutex sync.RWMutex
disableTerminalOutputArgsForCall []struct {
arg1 bool
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeTerminalOutputSwitch) DisableTerminalOutput(arg1 bool) {
fake.disableTerminalOutputMutex.Lock()
fake.disableTerminalOutputArgsForCall = append(fake.disableTerminalOutputArgsForCall, struct {
arg1 bool
}{arg1})
fake.recordInvocation("DisableTerminalOutput", []interface{}{arg1})
fake.disableTerminalOutputMutex.Unlock()
if fake.DisableTerminalOutputStub != nil {
fake.DisableTerminalOutputStub(arg1)
}
}
func (fake *FakeTerminalOutputSwitch) DisableTerminalOutputCallCount() int {
fake.disableTerminalOutputMutex.RLock()
defer fake.disableTerminalOutputMutex.RUnlock()
return len(fake.disableTerminalOutputArgsForCall)
}
func (fake *FakeTerminalOutputSwitch) DisableTerminalOutputArgsForCall(i int) bool {
fake.disableTerminalOutputMutex.RLock()
defer fake.disableTerminalOutputMutex.RUnlock()
return fake.disableTerminalOutputArgsForCall[i].arg1
}
func (fake *FakeTerminalOutputSwitch) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.disableTerminalOutputMutex.RLock()
defer fake.disableTerminalOutputMutex.RUnlock()
return fake.invocations
}
func (fake *FakeTerminalOutputSwitch) 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 _ rpc.TerminalOutputSwitch = new(FakeTerminalOutputSwitch)