forked from tw-bc-group/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
policy.go
41 lines (31 loc) · 989 Bytes
/
policy.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
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import mock "github.com/stretchr/testify/mock"
import msp "github.com/hyperledger/fabric/msp"
import protoutil "github.com/hyperledger/fabric/protoutil"
// Policy is an autogenerated mock type for the Policy type
type Policy struct {
mock.Mock
}
// EvaluateIdentities provides a mock function with given fields: identities
func (_m *Policy) EvaluateIdentities(identities []msp.Identity) error {
ret := _m.Called(identities)
var r0 error
if rf, ok := ret.Get(0).(func([]msp.Identity) error); ok {
r0 = rf(identities)
} else {
r0 = ret.Error(0)
}
return r0
}
// EvaluateSignedData provides a mock function with given fields: signatureSet
func (_m *Policy) EvaluateSignedData(signatureSet []*protoutil.SignedData) error {
ret := _m.Called(signatureSet)
var r0 error
if rf, ok := ret.Get(0).(func([]*protoutil.SignedData) error); ok {
r0 = rf(signatureSet)
} else {
r0 = ret.Error(0)
}
return r0
}