Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
100 lines
2.3 KiB
Go
100 lines
2.3 KiB
Go
// Code generated by mockery v2.53.0. DO NOT EDIT.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
state "github.com/cometbft/cometbft/state"
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
|
types "github.com/cometbft/cometbft/types"
|
|
)
|
|
|
|
// EvidencePool is an autogenerated mock type for the EvidencePool type
|
|
type EvidencePool struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// AddEvidence provides a mock function with given fields: _a0
|
|
func (_m *EvidencePool) AddEvidence(_a0 types.Evidence) error {
|
|
ret := _m.Called(_a0)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for AddEvidence")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(types.Evidence) error); ok {
|
|
r0 = rf(_a0)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// CheckEvidence provides a mock function with given fields: _a0
|
|
func (_m *EvidencePool) CheckEvidence(_a0 types.EvidenceList) error {
|
|
ret := _m.Called(_a0)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for CheckEvidence")
|
|
}
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(types.EvidenceList) error); ok {
|
|
r0 = rf(_a0)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// PendingEvidence provides a mock function with given fields: maxBytes
|
|
func (_m *EvidencePool) PendingEvidence(maxBytes int64) ([]types.Evidence, int64) {
|
|
ret := _m.Called(maxBytes)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for PendingEvidence")
|
|
}
|
|
|
|
var r0 []types.Evidence
|
|
var r1 int64
|
|
if rf, ok := ret.Get(0).(func(int64) ([]types.Evidence, int64)); ok {
|
|
return rf(maxBytes)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(int64) []types.Evidence); ok {
|
|
r0 = rf(maxBytes)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]types.Evidence)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(int64) int64); ok {
|
|
r1 = rf(maxBytes)
|
|
} else {
|
|
r1 = ret.Get(1).(int64)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Update provides a mock function with given fields: _a0, _a1
|
|
func (_m *EvidencePool) Update(_a0 state.State, _a1 types.EvidenceList) {
|
|
_m.Called(_a0, _a1)
|
|
}
|
|
|
|
// NewEvidencePool creates a new instance of EvidencePool. 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 NewEvidencePool(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *EvidencePool {
|
|
mock := &EvidencePool{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|