-
Notifications
You must be signed in to change notification settings - Fork 0
/
transaction_registry.go
148 lines (134 loc) · 3.7 KB
/
transaction_registry.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
sync "sync"
)
type TransactionRegistry struct {
AddStub func(string, string) bool
addMutex sync.RWMutex
addArgsForCall []struct {
arg1 string
arg2 string
}
addReturns struct {
result1 bool
}
addReturnsOnCall map[int]struct {
result1 bool
}
RemoveStub func(string, string)
removeMutex sync.RWMutex
removeArgsForCall []struct {
arg1 string
arg2 string
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *TransactionRegistry) Add(arg1 string, arg2 string) bool {
fake.addMutex.Lock()
ret, specificReturn := fake.addReturnsOnCall[len(fake.addArgsForCall)]
fake.addArgsForCall = append(fake.addArgsForCall, struct {
arg1 string
arg2 string
}{arg1, arg2})
fake.recordInvocation("Add", []interface{}{arg1, arg2})
fake.addMutex.Unlock()
if fake.AddStub != nil {
return fake.AddStub(arg1, arg2)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.addReturns
return fakeReturns.result1
}
func (fake *TransactionRegistry) AddCallCount() int {
fake.addMutex.RLock()
defer fake.addMutex.RUnlock()
return len(fake.addArgsForCall)
}
func (fake *TransactionRegistry) AddCalls(stub func(string, string) bool) {
fake.addMutex.Lock()
defer fake.addMutex.Unlock()
fake.AddStub = stub
}
func (fake *TransactionRegistry) AddArgsForCall(i int) (string, string) {
fake.addMutex.RLock()
defer fake.addMutex.RUnlock()
argsForCall := fake.addArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *TransactionRegistry) AddReturns(result1 bool) {
fake.addMutex.Lock()
defer fake.addMutex.Unlock()
fake.AddStub = nil
fake.addReturns = struct {
result1 bool
}{result1}
}
func (fake *TransactionRegistry) AddReturnsOnCall(i int, result1 bool) {
fake.addMutex.Lock()
defer fake.addMutex.Unlock()
fake.AddStub = nil
if fake.addReturnsOnCall == nil {
fake.addReturnsOnCall = make(map[int]struct {
result1 bool
})
}
fake.addReturnsOnCall[i] = struct {
result1 bool
}{result1}
}
func (fake *TransactionRegistry) Remove(arg1 string, arg2 string) {
fake.removeMutex.Lock()
fake.removeArgsForCall = append(fake.removeArgsForCall, struct {
arg1 string
arg2 string
}{arg1, arg2})
fake.recordInvocation("Remove", []interface{}{arg1, arg2})
fake.removeMutex.Unlock()
if fake.RemoveStub != nil {
fake.RemoveStub(arg1, arg2)
}
}
func (fake *TransactionRegistry) RemoveCallCount() int {
fake.removeMutex.RLock()
defer fake.removeMutex.RUnlock()
return len(fake.removeArgsForCall)
}
func (fake *TransactionRegistry) RemoveCalls(stub func(string, string)) {
fake.removeMutex.Lock()
defer fake.removeMutex.Unlock()
fake.RemoveStub = stub
}
func (fake *TransactionRegistry) RemoveArgsForCall(i int) (string, string) {
fake.removeMutex.RLock()
defer fake.removeMutex.RUnlock()
argsForCall := fake.removeArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *TransactionRegistry) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.addMutex.RLock()
defer fake.addMutex.RUnlock()
fake.removeMutex.RLock()
defer fake.removeMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *TransactionRegistry) 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)
}