-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathexecution_data_getter.go
More file actions
61 lines (48 loc) · 1.68 KB
/
execution_data_getter.go
File metadata and controls
61 lines (48 loc) · 1.68 KB
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
// Code generated by mockery. DO NOT EDIT.
package mock
import (
context "context"
flow "github.com/onflow/flow-go/model/flow"
execution_data "github.com/onflow/flow-go/module/executiondatasync/execution_data"
mock "github.com/stretchr/testify/mock"
)
// ExecutionDataGetter is an autogenerated mock type for the ExecutionDataGetter type
type ExecutionDataGetter struct {
mock.Mock
}
// Get provides a mock function with given fields: ctx, rootID
func (_m *ExecutionDataGetter) Get(ctx context.Context, rootID flow.Identifier) (*execution_data.BlockExecutionData, error) {
ret := _m.Called(ctx, rootID)
if len(ret) == 0 {
panic("no return value specified for Get")
}
var r0 *execution_data.BlockExecutionData
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, flow.Identifier) (*execution_data.BlockExecutionData, error)); ok {
return rf(ctx, rootID)
}
if rf, ok := ret.Get(0).(func(context.Context, flow.Identifier) *execution_data.BlockExecutionData); ok {
r0 = rf(ctx, rootID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*execution_data.BlockExecutionData)
}
}
if rf, ok := ret.Get(1).(func(context.Context, flow.Identifier) error); ok {
r1 = rf(ctx, rootID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// NewExecutionDataGetter creates a new instance of ExecutionDataGetter. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewExecutionDataGetter(t interface {
mock.TestingT
Cleanup(func())
}) *ExecutionDataGetter {
mock := &ExecutionDataGetter{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}