-
Notifications
You must be signed in to change notification settings - Fork 928
/
fake_user_printer.go
66 lines (57 loc) · 1.84 KB
/
fake_user_printer.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
// This file was generated by counterfeiter
package userprintfakes
import (
"sync"
"code.cloudfoundry.org/cli/cf/actors/userprint"
)
type FakeUserPrinter struct {
PrintUsersStub func(guid string, username string)
printUsersMutex sync.RWMutex
printUsersArgsForCall []struct {
guid string
username string
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeUserPrinter) PrintUsers(guid string, username string) {
fake.printUsersMutex.Lock()
fake.printUsersArgsForCall = append(fake.printUsersArgsForCall, struct {
guid string
username string
}{guid, username})
fake.recordInvocation("PrintUsers", []interface{}{guid, username})
fake.printUsersMutex.Unlock()
if fake.PrintUsersStub != nil {
fake.PrintUsersStub(guid, username)
}
}
func (fake *FakeUserPrinter) PrintUsersCallCount() int {
fake.printUsersMutex.RLock()
defer fake.printUsersMutex.RUnlock()
return len(fake.printUsersArgsForCall)
}
func (fake *FakeUserPrinter) PrintUsersArgsForCall(i int) (string, string) {
fake.printUsersMutex.RLock()
defer fake.printUsersMutex.RUnlock()
return fake.printUsersArgsForCall[i].guid, fake.printUsersArgsForCall[i].username
}
func (fake *FakeUserPrinter) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.printUsersMutex.RLock()
defer fake.printUsersMutex.RUnlock()
return fake.invocations
}
func (fake *FakeUserPrinter) 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 _ userprint.UserPrinter = new(FakeUserPrinter)