-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfactory.go
55 lines (44 loc) · 1.16 KB
/
factory.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
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import blockledger "github.com/hyperledger/fabric/common/ledger/blockledger"
import mock "github.com/stretchr/testify/mock"
// Factory is an autogenerated mock type for the Factory type
type Factory struct {
mock.Mock
}
// ChainIDs provides a mock function with given fields:
func (_m *Factory) ChainIDs() []string {
ret := _m.Called()
var r0 []string
if rf, ok := ret.Get(0).(func() []string); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]string)
}
}
return r0
}
// Close provides a mock function with given fields:
func (_m *Factory) Close() {
_m.Called()
}
// GetOrCreate provides a mock function with given fields: chainID
func (_m *Factory) GetOrCreate(chainID string) (blockledger.ReadWriter, error) {
ret := _m.Called(chainID)
var r0 blockledger.ReadWriter
if rf, ok := ret.Get(0).(func(string) blockledger.ReadWriter); ok {
r0 = rf(chainID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(blockledger.ReadWriter)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(string) error); ok {
r1 = rf(chainID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}