mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-12 06:41:31 +00:00
This change aims to keep versions of mockery consistent across developer laptops. This change adds mockery to the `tools.go` file so that its version can be managed consistently in the `go.mod` file. Additionally, this change temporarily disables adding mockery's version number to generated files. There is an outstanding issue against the mockery project related to the version string behavior when running from `go get`. I have created a pull request to fix this issue in the mockery project. see: https://github.com/vektra/mockery/issues/397
122 lines
2.3 KiB
Go
122 lines
2.3 KiB
Go
// Code generated by mockery. DO NOT EDIT.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
context "context"
|
|
|
|
mock "github.com/stretchr/testify/mock"
|
|
p2p "github.com/tendermint/tendermint/internal/p2p"
|
|
)
|
|
|
|
// Transport is an autogenerated mock type for the Transport type
|
|
type Transport struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Accept provides a mock function with given fields:
|
|
func (_m *Transport) Accept() (p2p.Connection, error) {
|
|
ret := _m.Called()
|
|
|
|
var r0 p2p.Connection
|
|
if rf, ok := ret.Get(0).(func() p2p.Connection); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(p2p.Connection)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func() error); ok {
|
|
r1 = rf()
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Close provides a mock function with given fields:
|
|
func (_m *Transport) Close() error {
|
|
ret := _m.Called()
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func() error); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Dial provides a mock function with given fields: _a0, _a1
|
|
func (_m *Transport) Dial(_a0 context.Context, _a1 p2p.Endpoint) (p2p.Connection, error) {
|
|
ret := _m.Called(_a0, _a1)
|
|
|
|
var r0 p2p.Connection
|
|
if rf, ok := ret.Get(0).(func(context.Context, p2p.Endpoint) p2p.Connection); ok {
|
|
r0 = rf(_a0, _a1)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(p2p.Connection)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(context.Context, p2p.Endpoint) error); ok {
|
|
r1 = rf(_a0, _a1)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Endpoints provides a mock function with given fields:
|
|
func (_m *Transport) Endpoints() []p2p.Endpoint {
|
|
ret := _m.Called()
|
|
|
|
var r0 []p2p.Endpoint
|
|
if rf, ok := ret.Get(0).(func() []p2p.Endpoint); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]p2p.Endpoint)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// Protocols provides a mock function with given fields:
|
|
func (_m *Transport) Protocols() []p2p.Protocol {
|
|
ret := _m.Called()
|
|
|
|
var r0 []p2p.Protocol
|
|
if rf, ok := ret.Get(0).(func() []p2p.Protocol); ok {
|
|
r0 = rf()
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]p2p.Protocol)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// String provides a mock function with given fields:
|
|
func (_m *Transport) String() string {
|
|
ret := _m.Called()
|
|
|
|
var r0 string
|
|
if rf, ok := ret.Get(0).(func() string); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(string)
|
|
}
|
|
|
|
return r0
|
|
}
|