-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexitedfunc.go
76 lines (66 loc) · 1.78 KB
/
exitedfunc.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
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/core/container"
)
type ExitedFunc struct {
Stub func(int, error)
mutex sync.RWMutex
argsForCall []struct {
arg1 int
arg2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *ExitedFunc) Spy(arg1 int, arg2 error) {
fake.mutex.Lock()
fake.argsForCall = append(fake.argsForCall, struct {
arg1 int
arg2 error
}{arg1, arg2})
fake.recordInvocation("ExitedFunc", []interface{}{arg1, arg2})
fake.mutex.Unlock()
if fake.Stub != nil {
fake.Stub(arg1, arg2)
}
}
func (fake *ExitedFunc) CallCount() int {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return len(fake.argsForCall)
}
func (fake *ExitedFunc) Calls(stub func(int, error)) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = stub
}
func (fake *ExitedFunc) ArgsForCall(i int) (int, error) {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return fake.argsForCall[i].arg1, fake.argsForCall[i].arg2
}
func (fake *ExitedFunc) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.mutex.RLock()
defer fake.mutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *ExitedFunc) 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 _ container.ExitedFunc = new(ExitedFunc).Spy