forked from okx/xlayer-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock_pool.go
85 lines (65 loc) · 2.04 KB
/
mock_pool.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
// Code generated by mockery v2.22.1. DO NOT EDIT.
package gasprice
import (
context "context"
mock "github.com/stretchr/testify/mock"
pool "github.com/0xPolygonHermez/zkevm-node/pool"
time "time"
)
// poolMock is an autogenerated mock type for the poolInterface type
type poolMock struct {
mock.Mock
}
// DeleteGasPricesHistoryOlderThan provides a mock function with given fields: ctx, date
func (_m *poolMock) DeleteGasPricesHistoryOlderThan(ctx context.Context, date time.Time) error {
ret := _m.Called(ctx, date)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, time.Time) error); ok {
r0 = rf(ctx, date)
} else {
r0 = ret.Error(0)
}
return r0
}
// GetGasPrices provides a mock function with given fields: ctx
func (_m *poolMock) GetGasPrices(ctx context.Context) (pool.GasPrices, error) {
ret := _m.Called(ctx)
var r0 pool.GasPrices
var r1 error
if rf, ok := ret.Get(0).(func(context.Context) (pool.GasPrices, error)); ok {
return rf(ctx)
}
if rf, ok := ret.Get(0).(func(context.Context) pool.GasPrices); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(pool.GasPrices)
}
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SetGasPrices provides a mock function with given fields: ctx, l2GasPrice, l1GasPrice
func (_m *poolMock) SetGasPrices(ctx context.Context, l2GasPrice uint64, l1GasPrice uint64) error {
ret := _m.Called(ctx, l2GasPrice, l1GasPrice)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, uint64, uint64) error); ok {
r0 = rf(ctx, l2GasPrice, l1GasPrice)
} else {
r0 = ret.Error(0)
}
return r0
}
type mockConstructorTestingTnewPoolMock interface {
mock.TestingT
Cleanup(func())
}
// newPoolMock creates a new instance of poolMock. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func newPoolMock(t mockConstructorTestingTnewPoolMock) *poolMock {
mock := &poolMock{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}