This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
vm_provider.go
86 lines (77 loc) · 2.2 KB
/
vm_provider.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
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
container_test "github.com/hyperledger/fabric/core/container"
)
type VMProvider struct {
NewVMStub func() container_test.VM
newVMMutex sync.RWMutex
newVMArgsForCall []struct{}
newVMReturns struct {
result1 container_test.VM
}
newVMReturnsOnCall map[int]struct {
result1 container_test.VM
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *VMProvider) NewVM() container_test.VM {
fake.newVMMutex.Lock()
ret, specificReturn := fake.newVMReturnsOnCall[len(fake.newVMArgsForCall)]
fake.newVMArgsForCall = append(fake.newVMArgsForCall, struct{}{})
fake.recordInvocation("NewVM", []interface{}{})
fake.newVMMutex.Unlock()
if fake.NewVMStub != nil {
return fake.NewVMStub()
}
if specificReturn {
return ret.result1
}
return fake.newVMReturns.result1
}
func (fake *VMProvider) NewVMCallCount() int {
fake.newVMMutex.RLock()
defer fake.newVMMutex.RUnlock()
return len(fake.newVMArgsForCall)
}
func (fake *VMProvider) NewVMReturns(result1 container_test.VM) {
fake.NewVMStub = nil
fake.newVMReturns = struct {
result1 container_test.VM
}{result1}
}
func (fake *VMProvider) NewVMReturnsOnCall(i int, result1 container_test.VM) {
fake.NewVMStub = nil
if fake.newVMReturnsOnCall == nil {
fake.newVMReturnsOnCall = make(map[int]struct {
result1 container_test.VM
})
}
fake.newVMReturnsOnCall[i] = struct {
result1 container_test.VM
}{result1}
}
func (fake *VMProvider) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.newVMMutex.RLock()
defer fake.newVMMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *VMProvider) 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)
}