-
Notifications
You must be signed in to change notification settings - Fork 179
/
option.go
42 lines (32 loc) · 954 Bytes
/
option.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
// Code generated by mockery v2.13.1. DO NOT EDIT.
package mock
import (
fvm "github.com/onflow/flow-go/fvm"
mock "github.com/stretchr/testify/mock"
)
// Option is an autogenerated mock type for the Option type
type Option struct {
mock.Mock
}
// Execute provides a mock function with given fields: ctx
func (_m *Option) Execute(ctx fvm.Context) fvm.Context {
ret := _m.Called(ctx)
var r0 fvm.Context
if rf, ok := ret.Get(0).(func(fvm.Context) fvm.Context); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(fvm.Context)
}
return r0
}
type mockConstructorTestingTNewOption interface {
mock.TestingT
Cleanup(func())
}
// NewOption creates a new instance of Option. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewOption(t mockConstructorTestingTNewOption) *Option {
mock := &Option{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}