-
Notifications
You must be signed in to change notification settings - Fork 179
/
view_committer.go
47 lines (38 loc) · 1.07 KB
/
view_committer.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
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mock
import (
context "context"
delta "github.com/onflow/flow-go/engine/execution/state/delta"
mock "github.com/stretchr/testify/mock"
)
// ViewCommitter is an autogenerated mock type for the ViewCommitter type
type ViewCommitter struct {
mock.Mock
}
// CommitView provides a mock function with given fields: _a0, _a1, _a2
func (_m *ViewCommitter) CommitView(_a0 context.Context, _a1 delta.View, _a2 []byte) ([]byte, []byte, error) {
ret := _m.Called(_a0, _a1, _a2)
var r0 []byte
if rf, ok := ret.Get(0).(func(context.Context, delta.View, []byte) []byte); ok {
r0 = rf(_a0, _a1, _a2)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]byte)
}
}
var r1 []byte
if rf, ok := ret.Get(1).(func(context.Context, delta.View, []byte) []byte); ok {
r1 = rf(_a0, _a1, _a2)
} else {
if ret.Get(1) != nil {
r1 = ret.Get(1).([]byte)
}
}
var r2 error
if rf, ok := ret.Get(2).(func(context.Context, delta.View, []byte) error); ok {
r2 = rf(_a0, _a1, _a2)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}