forked from maxbrunsfeld/counterfeiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_unexported_interface.go
109 lines (99 loc) · 2.92 KB
/
fake_unexported_interface.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
// Code generated by counterfeiter. DO NOT EDIT.
package fixturesfakes
import (
"sync"
)
type FakeUnexportedInterface struct {
MethodStub func(string, map[string]interface{}) string
methodMutex sync.RWMutex
methodArgsForCall []struct {
arg1 string
arg2 map[string]interface{}
}
methodReturns struct {
result1 string
}
methodReturnsOnCall map[int]struct {
result1 string
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeUnexportedInterface) Method(arg1 string, arg2 map[string]interface{}) string {
fake.methodMutex.Lock()
ret, specificReturn := fake.methodReturnsOnCall[len(fake.methodArgsForCall)]
fake.methodArgsForCall = append(fake.methodArgsForCall, struct {
arg1 string
arg2 map[string]interface{}
}{arg1, arg2})
stub := fake.MethodStub
fakeReturns := fake.methodReturns
fake.recordInvocation("Method", []interface{}{arg1, arg2})
fake.methodMutex.Unlock()
if stub != nil {
return stub(arg1, arg2)
}
if specificReturn {
return ret.result1
}
return fakeReturns.result1
}
func (fake *FakeUnexportedInterface) MethodCallCount() int {
fake.methodMutex.RLock()
defer fake.methodMutex.RUnlock()
return len(fake.methodArgsForCall)
}
func (fake *FakeUnexportedInterface) MethodCalls(stub func(string, map[string]interface{}) string) {
fake.methodMutex.Lock()
defer fake.methodMutex.Unlock()
fake.MethodStub = stub
}
func (fake *FakeUnexportedInterface) MethodArgsForCall(i int) (string, map[string]interface{}) {
fake.methodMutex.RLock()
defer fake.methodMutex.RUnlock()
argsForCall := fake.methodArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *FakeUnexportedInterface) MethodReturns(result1 string) {
fake.methodMutex.Lock()
defer fake.methodMutex.Unlock()
fake.MethodStub = nil
fake.methodReturns = struct {
result1 string
}{result1}
}
func (fake *FakeUnexportedInterface) MethodReturnsOnCall(i int, result1 string) {
fake.methodMutex.Lock()
defer fake.methodMutex.Unlock()
fake.MethodStub = nil
if fake.methodReturnsOnCall == nil {
fake.methodReturnsOnCall = make(map[int]struct {
result1 string
})
}
fake.methodReturnsOnCall[i] = struct {
result1 string
}{result1}
}
func (fake *FakeUnexportedInterface) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.methodMutex.RLock()
defer fake.methodMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeUnexportedInterface) 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)
}