-
Notifications
You must be signed in to change notification settings - Fork 179
/
procedure.go
117 lines (91 loc) · 2.69 KB
/
procedure.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Code generated by mockery v2.21.4. DO NOT EDIT.
package mock
import (
fvm "github.com/onflow/flow-go/fvm"
logical "github.com/onflow/flow-go/fvm/storage/logical"
mock "github.com/stretchr/testify/mock"
storage "github.com/onflow/flow-go/fvm/storage"
)
// Procedure is an autogenerated mock type for the Procedure type
type Procedure struct {
mock.Mock
}
// ComputationLimit provides a mock function with given fields: ctx
func (_m *Procedure) ComputationLimit(ctx fvm.Context) uint64 {
ret := _m.Called(ctx)
var r0 uint64
if rf, ok := ret.Get(0).(func(fvm.Context) uint64); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(uint64)
}
return r0
}
// ExecutionTime provides a mock function with given fields:
func (_m *Procedure) ExecutionTime() logical.Time {
ret := _m.Called()
var r0 logical.Time
if rf, ok := ret.Get(0).(func() logical.Time); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(logical.Time)
}
return r0
}
// MemoryLimit provides a mock function with given fields: ctx
func (_m *Procedure) MemoryLimit(ctx fvm.Context) uint64 {
ret := _m.Called(ctx)
var r0 uint64
if rf, ok := ret.Get(0).(func(fvm.Context) uint64); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(uint64)
}
return r0
}
// NewExecutor provides a mock function with given fields: ctx, txnState
func (_m *Procedure) NewExecutor(ctx fvm.Context, txnState storage.TransactionPreparer) fvm.ProcedureExecutor {
ret := _m.Called(ctx, txnState)
var r0 fvm.ProcedureExecutor
if rf, ok := ret.Get(0).(func(fvm.Context, storage.TransactionPreparer) fvm.ProcedureExecutor); ok {
r0 = rf(ctx, txnState)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(fvm.ProcedureExecutor)
}
}
return r0
}
// ShouldDisableMemoryAndInteractionLimits provides a mock function with given fields: ctx
func (_m *Procedure) ShouldDisableMemoryAndInteractionLimits(ctx fvm.Context) bool {
ret := _m.Called(ctx)
var r0 bool
if rf, ok := ret.Get(0).(func(fvm.Context) bool); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// Type provides a mock function with given fields:
func (_m *Procedure) Type() fvm.ProcedureType {
ret := _m.Called()
var r0 fvm.ProcedureType
if rf, ok := ret.Get(0).(func() fvm.ProcedureType); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(fvm.ProcedureType)
}
return r0
}
type mockConstructorTestingTNewProcedure interface {
mock.TestingT
Cleanup(func())
}
// NewProcedure creates a new instance of Procedure. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewProcedure(t mockConstructorTestingTNewProcedure) *Procedure {
mock := &Procedure{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}