mock_types

package
v2.0.4 Latest Latest
Warning

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

Go to latest
Published: Mar 28, 2024 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

Package mock_types is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockAccountKeeper

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

MockAccountKeeper is a mock of AccountKeeper interface.

func NewMockAccountKeeper

func NewMockAccountKeeper(ctrl *gomock.Controller) *MockAccountKeeper

NewMockAccountKeeper creates a new mock instance.

func (*MockAccountKeeper) EXPECT

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

func (*MockAccountKeeper) GetModuleAccount

func (m *MockAccountKeeper) GetModuleAccount(ctx types.Context, name string) types0.ModuleAccountI

GetModuleAccount mocks base method.

func (*MockAccountKeeper) GetModuleAddress

func (m *MockAccountKeeper) GetModuleAddress(name string) types.AccAddress

GetModuleAddress mocks base method.

type MockAccountKeeperMockRecorder

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

MockAccountKeeperMockRecorder is the mock recorder for MockAccountKeeper.

func (*MockAccountKeeperMockRecorder) GetModuleAccount

func (mr *MockAccountKeeperMockRecorder) GetModuleAccount(ctx, name interface{}) *gomock.Call

GetModuleAccount indicates an expected call of GetModuleAccount.

func (*MockAccountKeeperMockRecorder) GetModuleAddress

func (mr *MockAccountKeeperMockRecorder) GetModuleAddress(name interface{}) *gomock.Call

GetModuleAddress indicates an expected call of GetModuleAddress.

type MockChannelKeeper

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

MockChannelKeeper is a mock of ChannelKeeper interface.

func NewMockChannelKeeper

func NewMockChannelKeeper(ctrl *gomock.Controller) *MockChannelKeeper

NewMockChannelKeeper creates a new mock instance.

func (*MockChannelKeeper) EXPECT

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

func (*MockChannelKeeper) GetAllChannelsWithPortPrefix

func (m *MockChannelKeeper) GetAllChannelsWithPortPrefix(ctx types.Context, portPrefix string) []types1.IdentifiedChannel

GetAllChannelsWithPortPrefix mocks base method.

func (*MockChannelKeeper) GetChannel

func (m *MockChannelKeeper) GetChannel(ctx types.Context, srcPort, srcChan string) (types1.Channel, bool)

GetChannel mocks base method.

func (*MockChannelKeeper) GetNextSequenceSend

func (m *MockChannelKeeper) GetNextSequenceSend(ctx types.Context, portID, channelID string) (uint64, bool)

GetNextSequenceSend mocks base method.

type MockChannelKeeperMockRecorder

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

MockChannelKeeperMockRecorder is the mock recorder for MockChannelKeeper.

func (*MockChannelKeeperMockRecorder) GetAllChannelsWithPortPrefix

func (mr *MockChannelKeeperMockRecorder) GetAllChannelsWithPortPrefix(ctx, portPrefix interface{}) *gomock.Call

GetAllChannelsWithPortPrefix indicates an expected call of GetAllChannelsWithPortPrefix.

func (*MockChannelKeeperMockRecorder) GetChannel

func (mr *MockChannelKeeperMockRecorder) GetChannel(ctx, srcPort, srcChan interface{}) *gomock.Call

GetChannel indicates an expected call of GetChannel.

func (*MockChannelKeeperMockRecorder) GetNextSequenceSend

func (mr *MockChannelKeeperMockRecorder) GetNextSequenceSend(ctx, portID, channelID interface{}) *gomock.Call

GetNextSequenceSend indicates an expected call of GetNextSequenceSend.

type MockFeeRefunderKeeper

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

MockFeeRefunderKeeper is a mock of FeeRefunderKeeper interface.

func NewMockFeeRefunderKeeper

func NewMockFeeRefunderKeeper(ctrl *gomock.Controller) *MockFeeRefunderKeeper

NewMockFeeRefunderKeeper creates a new mock instance.

func (*MockFeeRefunderKeeper) DistributeAcknowledgementFee

func (m *MockFeeRefunderKeeper) DistributeAcknowledgementFee(ctx types.Context, receiver types.AccAddress, packetID types2.PacketID)

DistributeAcknowledgementFee mocks base method.

func (*MockFeeRefunderKeeper) DistributeTimeoutFee

func (m *MockFeeRefunderKeeper) DistributeTimeoutFee(ctx types.Context, receiver types.AccAddress, packetID types2.PacketID)

DistributeTimeoutFee mocks base method.

func (*MockFeeRefunderKeeper) EXPECT

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

func (*MockFeeRefunderKeeper) LockFees

func (m *MockFeeRefunderKeeper) LockFees(ctx types.Context, payer types.AccAddress, packetID types2.PacketID, fee types2.Fee) error

LockFees mocks base method.

type MockFeeRefunderKeeperMockRecorder

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

MockFeeRefunderKeeperMockRecorder is the mock recorder for MockFeeRefunderKeeper.

func (*MockFeeRefunderKeeperMockRecorder) DistributeAcknowledgementFee

func (mr *MockFeeRefunderKeeperMockRecorder) DistributeAcknowledgementFee(ctx, receiver, packetID interface{}) *gomock.Call

DistributeAcknowledgementFee indicates an expected call of DistributeAcknowledgementFee.

func (*MockFeeRefunderKeeperMockRecorder) DistributeTimeoutFee

func (mr *MockFeeRefunderKeeperMockRecorder) DistributeTimeoutFee(ctx, receiver, packetID interface{}) *gomock.Call

DistributeTimeoutFee indicates an expected call of DistributeTimeoutFee.

func (*MockFeeRefunderKeeperMockRecorder) LockFees

func (mr *MockFeeRefunderKeeperMockRecorder) LockFees(ctx, payer, packetID, fee interface{}) *gomock.Call

LockFees indicates an expected call of LockFees.

type MockWasmKeeper

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

MockWasmKeeper is a mock of WasmKeeper interface.

func NewMockWasmKeeper

func NewMockWasmKeeper(ctrl *gomock.Controller) *MockWasmKeeper

NewMockWasmKeeper creates a new mock instance.

func (*MockWasmKeeper) EXPECT

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

func (*MockWasmKeeper) HasContractInfo

func (m *MockWasmKeeper) HasContractInfo(ctx types.Context, contractAddress types.AccAddress) bool

HasContractInfo mocks base method.

func (*MockWasmKeeper) Sudo

func (m *MockWasmKeeper) Sudo(ctx types.Context, contractAddress types.AccAddress, msg []byte) ([]byte, error)

Sudo mocks base method.

type MockWasmKeeperMockRecorder

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

MockWasmKeeperMockRecorder is the mock recorder for MockWasmKeeper.

func (*MockWasmKeeperMockRecorder) HasContractInfo

func (mr *MockWasmKeeperMockRecorder) HasContractInfo(ctx, contractAddress interface{}) *gomock.Call

HasContractInfo indicates an expected call of HasContractInfo.

func (*MockWasmKeeperMockRecorder) Sudo

func (mr *MockWasmKeeperMockRecorder) Sudo(ctx, contractAddress, msg interface{}) *gomock.Call

Sudo indicates an expected call of Sudo.

Jump to

Keyboard shortcuts

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