-
Notifications
You must be signed in to change notification settings - Fork 178
/
qc_contract_client.go
50 lines (39 loc) · 1.06 KB
/
qc_contract_client.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
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mock
import (
context "context"
model "github.com/onflow/flow-go/consensus/hotstuff/model"
mock "github.com/stretchr/testify/mock"
)
// QCContractClient is an autogenerated mock type for the QCContractClient type
type QCContractClient struct {
mock.Mock
}
// SubmitVote provides a mock function with given fields: ctx, vote
func (_m *QCContractClient) SubmitVote(ctx context.Context, vote *model.Vote) error {
ret := _m.Called(ctx, vote)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, *model.Vote) error); ok {
r0 = rf(ctx, vote)
} else {
r0 = ret.Error(0)
}
return r0
}
// Voted provides a mock function with given fields: ctx
func (_m *QCContractClient) Voted(ctx context.Context) (bool, error) {
ret := _m.Called(ctx)
var r0 bool
if rf, ok := ret.Get(0).(func(context.Context) bool); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(bool)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}