testutil

package
v0.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 12, 2024 License: GPL-3.0 Imports: 11 Imported by: 0

Documentation

Overview

Package testutil is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ChainNamer

type ChainNamer interface {
	ChainName(chainVer xchain.ChainVersion) string
}

type MockChainNamer

type MockChainNamer struct {
	// contains filtered or unexported fields
}

MockChainNamer is a mock of ChainNamer interface.

func NewMockChainNamer

func NewMockChainNamer(ctrl *gomock.Controller) *MockChainNamer

NewMockChainNamer creates a new mock instance.

func (*MockChainNamer) ChainName

func (m *MockChainNamer) ChainName(chainVer xchain.ChainVersion) string

ChainName mocks base method.

func (*MockChainNamer) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

type MockChainNamerMockRecorder

type MockChainNamerMockRecorder struct {
	// contains filtered or unexported fields
}

MockChainNamerMockRecorder is the mock recorder for MockChainNamer.

func (*MockChainNamerMockRecorder) ChainName

func (mr *MockChainNamerMockRecorder) ChainName(chainVer any) *gomock.Call

ChainName indicates an expected call of ChainName.

type MockRegistry added in v0.3.0

type MockRegistry struct {
	// contains filtered or unexported fields
}

MockRegistry is a mock of Registry interface.

func NewMockRegistry added in v0.3.0

func NewMockRegistry(ctrl *gomock.Controller) *MockRegistry

NewMockRegistry creates a new mock instance.

func (*MockRegistry) ConfLevels added in v0.3.0

func (m *MockRegistry) ConfLevels(ctx context.Context) (map[uint64][]xchain.ConfLevel, error)

ConfLevels mocks base method.

func (*MockRegistry) EXPECT added in v0.3.0

EXPECT returns an object that allows the caller to indicate expected use.

type MockRegistryMockRecorder added in v0.3.0

type MockRegistryMockRecorder struct {
	// contains filtered or unexported fields
}

MockRegistryMockRecorder is the mock recorder for MockRegistry.

func (*MockRegistryMockRecorder) ConfLevels added in v0.3.0

func (mr *MockRegistryMockRecorder) ConfLevels(ctx any) *gomock.Call

ConfLevels indicates an expected call of ConfLevels.

type MockStakingKeeper

type MockStakingKeeper struct {
	// contains filtered or unexported fields
}

MockStakingKeeper is a mock of StakingKeeper interface.

func NewMockStakingKeeper

func NewMockStakingKeeper(ctrl *gomock.Controller) *MockStakingKeeper

NewMockStakingKeeper creates a new mock instance.

func (*MockStakingKeeper) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockStakingKeeper) GetPubKeyByConsAddr

func (m *MockStakingKeeper) GetPubKeyByConsAddr(arg0 context.Context, arg1 types.ConsAddress) (crypto.PublicKey, error)

GetPubKeyByConsAddr mocks base method.

type MockStakingKeeperMockRecorder

type MockStakingKeeperMockRecorder struct {
	// contains filtered or unexported fields
}

MockStakingKeeperMockRecorder is the mock recorder for MockStakingKeeper.

func (*MockStakingKeeperMockRecorder) GetPubKeyByConsAddr

func (mr *MockStakingKeeperMockRecorder) GetPubKeyByConsAddr(arg0, arg1 any) *gomock.Call

GetPubKeyByConsAddr indicates an expected call of GetPubKeyByConsAddr.

type MockValProvider added in v0.1.2

type MockValProvider struct {
	// contains filtered or unexported fields
}

MockValProvider is a mock of ValProvider interface.

func NewMockValProvider added in v0.1.2

func NewMockValProvider(ctrl *gomock.Controller) *MockValProvider

NewMockValProvider creates a new mock instance.

func (*MockValProvider) ActiveSetByHeight added in v0.1.2

func (m *MockValProvider) ActiveSetByHeight(ctx context.Context, height uint64) (*types1.ValidatorSetResponse, error)

ActiveSetByHeight mocks base method.

func (*MockValProvider) EXPECT added in v0.1.2

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockValProvider) ValidatorSet added in v0.6.0

ValidatorSet mocks base method.

type MockValProviderMockRecorder added in v0.1.2

type MockValProviderMockRecorder struct {
	// contains filtered or unexported fields
}

MockValProviderMockRecorder is the mock recorder for MockValProvider.

func (*MockValProviderMockRecorder) ActiveSetByHeight added in v0.1.2

func (mr *MockValProviderMockRecorder) ActiveSetByHeight(ctx, height any) *gomock.Call

ActiveSetByHeight indicates an expected call of ActiveSetByHeight.

func (*MockValProviderMockRecorder) ValidatorSet added in v0.6.0

func (mr *MockValProviderMockRecorder) ValidatorSet(ctx, req any) *gomock.Call

ValidatorSet indicates an expected call of ValidatorSet.

type MockVoter

type MockVoter struct {
	// contains filtered or unexported fields
}

MockVoter is a mock of Voter interface.

func NewMockVoter

func NewMockVoter(ctrl *gomock.Controller) *MockVoter

NewMockVoter creates a new mock instance.

func (*MockVoter) EXPECT

func (m *MockVoter) EXPECT() *MockVoterMockRecorder

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockVoter) GetAvailable

func (m *MockVoter) GetAvailable() []*types0.Vote

GetAvailable mocks base method.

func (*MockVoter) LocalAddress

func (m *MockVoter) LocalAddress() common.Address

LocalAddress mocks base method.

func (*MockVoter) SetCommitted

func (m *MockVoter) SetCommitted(headers []*types0.AttestHeader) error

SetCommitted mocks base method.

func (*MockVoter) SetProposed

func (m *MockVoter) SetProposed(headers []*types0.AttestHeader) error

SetProposed mocks base method.

func (*MockVoter) TrimBehind added in v0.1.1

func (m *MockVoter) TrimBehind(minsByChain map[xchain.ChainVersion]uint64) int

TrimBehind mocks base method.

func (*MockVoter) UpdateValidatorSet added in v0.2.0

func (m *MockVoter) UpdateValidatorSet(set *types1.ValidatorSetResponse) error

UpdateValidatorSet mocks base method.

type MockVoterMockRecorder

type MockVoterMockRecorder struct {
	// contains filtered or unexported fields
}

MockVoterMockRecorder is the mock recorder for MockVoter.

func (*MockVoterMockRecorder) GetAvailable

func (mr *MockVoterMockRecorder) GetAvailable() *gomock.Call

GetAvailable indicates an expected call of GetAvailable.

func (*MockVoterMockRecorder) LocalAddress

func (mr *MockVoterMockRecorder) LocalAddress() *gomock.Call

LocalAddress indicates an expected call of LocalAddress.

func (*MockVoterMockRecorder) SetCommitted

func (mr *MockVoterMockRecorder) SetCommitted(headers any) *gomock.Call

SetCommitted indicates an expected call of SetCommitted.

func (*MockVoterMockRecorder) SetProposed

func (mr *MockVoterMockRecorder) SetProposed(headers any) *gomock.Call

SetProposed indicates an expected call of SetProposed.

func (*MockVoterMockRecorder) TrimBehind added in v0.1.1

func (mr *MockVoterMockRecorder) TrimBehind(minsByChain any) *gomock.Call

TrimBehind indicates an expected call of TrimBehind.

func (*MockVoterMockRecorder) UpdateValidatorSet added in v0.2.0

func (mr *MockVoterMockRecorder) UpdateValidatorSet(set any) *gomock.Call

UpdateValidatorSet indicates an expected call of UpdateValidatorSet.

type Registry added in v0.3.0

type Registry interface {
	rtypes.PortalRegistry
}

type StakingKeeper

type StakingKeeper interface {
	baseapp.ValidatorStore
}

type ValProvider added in v0.1.2

type ValProvider interface {
	vtypes.ValidatorProvider
}

type Voter

type Voter interface {
	types.Voter
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL