Documentation ¶
Overview ¶
Package mock_types is a generated GoMock package.
Index ¶
- type MockAccountKeeper
- type MockAccountKeeperMockRecorder
- type MockBankKeeper
- type MockBankKeeperMockRecorder
- type MockChannelKeeper
- func (m *MockChannelKeeper) EXPECT() *MockChannelKeeperMockRecorder
- func (m *MockChannelKeeper) GetChannel(ctx types0.Context, srcPort, srcChan string) (types4.Channel, bool)
- func (m *MockChannelKeeper) GetConnection(ctx types0.Context, connectionID string) (exported.ConnectionI, error)
- func (m *MockChannelKeeper) GetNextSequenceSend(ctx types0.Context, portID, channelID string) (uint64, bool)
- type MockChannelKeeperMockRecorder
- func (mr *MockChannelKeeperMockRecorder) GetChannel(ctx, srcPort, srcChan interface{}) *gomock.Call
- func (mr *MockChannelKeeperMockRecorder) GetConnection(ctx, connectionID interface{}) *gomock.Call
- func (mr *MockChannelKeeperMockRecorder) GetNextSequenceSend(ctx, portID, channelID interface{}) *gomock.Call
- type MockFeeRefunderKeeper
- func (m *MockFeeRefunderKeeper) DistributeAcknowledgementFee(ctx types0.Context, receiver types0.AccAddress, packetID types5.PacketID)
- func (m *MockFeeRefunderKeeper) DistributeTimeoutFee(ctx types0.Context, receiver types0.AccAddress, packetID types5.PacketID)
- func (m *MockFeeRefunderKeeper) EXPECT() *MockFeeRefunderKeeperMockRecorder
- func (m *MockFeeRefunderKeeper) LockFees(ctx types0.Context, payer types0.AccAddress, packetID types5.PacketID, ...) error
- type MockFeeRefunderKeeperMockRecorder
- func (mr *MockFeeRefunderKeeperMockRecorder) DistributeAcknowledgementFee(ctx, receiver, packetID interface{}) *gomock.Call
- func (mr *MockFeeRefunderKeeperMockRecorder) DistributeTimeoutFee(ctx, receiver, packetID interface{}) *gomock.Call
- func (mr *MockFeeRefunderKeeperMockRecorder) LockFees(ctx, payer, packetID, fee interface{}) *gomock.Call
- type MockICAControllerKeeper
- func (m *MockICAControllerKeeper) EXPECT() *MockICAControllerKeeperMockRecorder
- func (m *MockICAControllerKeeper) GetActiveChannelID(ctx types0.Context, connectionID, portID string) (string, bool)
- func (m *MockICAControllerKeeper) GetInterchainAccountAddress(ctx types0.Context, connectionID, portID string) (string, bool)
- func (m *MockICAControllerKeeper) RegisterInterchainAccount(ctx types0.Context, connectionID, owner, version string) error
- func (m *MockICAControllerKeeper) SendTx(ctx types0.Context, chanCap *types2.Capability, connectionID, portID string, ...) (uint64, error)
- type MockICAControllerKeeperMockRecorder
- func (mr *MockICAControllerKeeperMockRecorder) GetActiveChannelID(ctx, connectionID, portID interface{}) *gomock.Call
- func (mr *MockICAControllerKeeperMockRecorder) GetInterchainAccountAddress(ctx, connectionID, portID interface{}) *gomock.Call
- func (mr *MockICAControllerKeeperMockRecorder) RegisterInterchainAccount(ctx, connectionID, owner, version interface{}) *gomock.Call
- func (mr *MockICAControllerKeeperMockRecorder) SendTx(...) *gomock.Call
- type MockWasmKeeper
- func (m *MockWasmKeeper) EXPECT() *MockWasmKeeperMockRecorder
- func (m *MockWasmKeeper) GetContractInfo(ctx types0.Context, contractAddress types0.AccAddress) *types.ContractInfo
- func (m *MockWasmKeeper) HasContractInfo(ctx types0.Context, contractAddress types0.AccAddress) bool
- func (m *MockWasmKeeper) Sudo(ctx types0.Context, contractAddress types0.AccAddress, msg []byte) ([]byte, error)
- type MockWasmKeeperMockRecorder
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 ¶
func (m *MockAccountKeeper) EXPECT() *MockAccountKeeperMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockAccountKeeper) GetAccount ¶
func (m *MockAccountKeeper) GetAccount(ctx types0.Context, addr types0.AccAddress) types1.AccountI
GetAccount mocks base method.
type MockAccountKeeperMockRecorder ¶
type MockAccountKeeperMockRecorder struct {
// contains filtered or unexported fields
}
MockAccountKeeperMockRecorder is the mock recorder for MockAccountKeeper.
func (*MockAccountKeeperMockRecorder) GetAccount ¶
func (mr *MockAccountKeeperMockRecorder) GetAccount(ctx, addr interface{}) *gomock.Call
GetAccount indicates an expected call of GetAccount.
type MockBankKeeper ¶
type MockBankKeeper struct {
// contains filtered or unexported fields
}
MockBankKeeper is a mock of BankKeeper interface.
func NewMockBankKeeper ¶
func NewMockBankKeeper(ctrl *gomock.Controller) *MockBankKeeper
NewMockBankKeeper creates a new mock instance.
func (*MockBankKeeper) EXPECT ¶
func (m *MockBankKeeper) EXPECT() *MockBankKeeperMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockBankKeeper) SendCoins ¶
func (m *MockBankKeeper) SendCoins(ctx types0.Context, fromAddr, toAddr types0.AccAddress, amt types0.Coins) error
SendCoins mocks base method.
func (*MockBankKeeper) SpendableCoins ¶
func (m *MockBankKeeper) SpendableCoins(ctx types0.Context, addr types0.AccAddress) types0.Coins
SpendableCoins mocks base method.
type MockBankKeeperMockRecorder ¶
type MockBankKeeperMockRecorder struct {
// contains filtered or unexported fields
}
MockBankKeeperMockRecorder is the mock recorder for MockBankKeeper.
func (*MockBankKeeperMockRecorder) SendCoins ¶
func (mr *MockBankKeeperMockRecorder) SendCoins(ctx, fromAddr, toAddr, amt interface{}) *gomock.Call
SendCoins indicates an expected call of SendCoins.
func (*MockBankKeeperMockRecorder) SpendableCoins ¶
func (mr *MockBankKeeperMockRecorder) SpendableCoins(ctx, addr interface{}) *gomock.Call
SpendableCoins indicates an expected call of SpendableCoins.
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 ¶
func (m *MockChannelKeeper) EXPECT() *MockChannelKeeperMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockChannelKeeper) GetChannel ¶
func (m *MockChannelKeeper) GetChannel(ctx types0.Context, srcPort, srcChan string) (types4.Channel, bool)
GetChannel mocks base method.
func (*MockChannelKeeper) GetConnection ¶
func (m *MockChannelKeeper) GetConnection(ctx types0.Context, connectionID string) (exported.ConnectionI, error)
GetConnection mocks base method.
func (*MockChannelKeeper) GetNextSequenceSend ¶
func (m *MockChannelKeeper) GetNextSequenceSend(ctx types0.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) GetChannel ¶
func (mr *MockChannelKeeperMockRecorder) GetChannel(ctx, srcPort, srcChan interface{}) *gomock.Call
GetChannel indicates an expected call of GetChannel.
func (*MockChannelKeeperMockRecorder) GetConnection ¶
func (mr *MockChannelKeeperMockRecorder) GetConnection(ctx, connectionID interface{}) *gomock.Call
GetConnection indicates an expected call of GetConnection.
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 types0.Context, receiver types0.AccAddress, packetID types5.PacketID)
DistributeAcknowledgementFee mocks base method.
func (*MockFeeRefunderKeeper) DistributeTimeoutFee ¶
func (m *MockFeeRefunderKeeper) DistributeTimeoutFee(ctx types0.Context, receiver types0.AccAddress, packetID types5.PacketID)
DistributeTimeoutFee mocks base method.
func (*MockFeeRefunderKeeper) EXPECT ¶
func (m *MockFeeRefunderKeeper) EXPECT() *MockFeeRefunderKeeperMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
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 MockICAControllerKeeper ¶
type MockICAControllerKeeper struct {
// contains filtered or unexported fields
}
MockICAControllerKeeper is a mock of ICAControllerKeeper interface.
func NewMockICAControllerKeeper ¶
func NewMockICAControllerKeeper(ctrl *gomock.Controller) *MockICAControllerKeeper
NewMockICAControllerKeeper creates a new mock instance.
func (*MockICAControllerKeeper) EXPECT ¶
func (m *MockICAControllerKeeper) EXPECT() *MockICAControllerKeeperMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockICAControllerKeeper) GetActiveChannelID ¶
func (m *MockICAControllerKeeper) GetActiveChannelID(ctx types0.Context, connectionID, portID string) (string, bool)
GetActiveChannelID mocks base method.
func (*MockICAControllerKeeper) GetInterchainAccountAddress ¶
func (m *MockICAControllerKeeper) GetInterchainAccountAddress(ctx types0.Context, connectionID, portID string) (string, bool)
GetInterchainAccountAddress mocks base method.
func (*MockICAControllerKeeper) RegisterInterchainAccount ¶
func (m *MockICAControllerKeeper) RegisterInterchainAccount(ctx types0.Context, connectionID, owner, version string) error
RegisterInterchainAccount mocks base method.
func (*MockICAControllerKeeper) SendTx ¶
func (m *MockICAControllerKeeper) SendTx(ctx types0.Context, chanCap *types2.Capability, connectionID, portID string, icaPacketData types3.InterchainAccountPacketData, timeoutTimestamp uint64) (uint64, error)
SendTx mocks base method.
type MockICAControllerKeeperMockRecorder ¶
type MockICAControllerKeeperMockRecorder struct {
// contains filtered or unexported fields
}
MockICAControllerKeeperMockRecorder is the mock recorder for MockICAControllerKeeper.
func (*MockICAControllerKeeperMockRecorder) GetActiveChannelID ¶
func (mr *MockICAControllerKeeperMockRecorder) GetActiveChannelID(ctx, connectionID, portID interface{}) *gomock.Call
GetActiveChannelID indicates an expected call of GetActiveChannelID.
func (*MockICAControllerKeeperMockRecorder) GetInterchainAccountAddress ¶
func (mr *MockICAControllerKeeperMockRecorder) GetInterchainAccountAddress(ctx, connectionID, portID interface{}) *gomock.Call
GetInterchainAccountAddress indicates an expected call of GetInterchainAccountAddress.
func (*MockICAControllerKeeperMockRecorder) RegisterInterchainAccount ¶
func (mr *MockICAControllerKeeperMockRecorder) RegisterInterchainAccount(ctx, connectionID, owner, version interface{}) *gomock.Call
RegisterInterchainAccount indicates an expected call of RegisterInterchainAccount.
func (*MockICAControllerKeeperMockRecorder) SendTx ¶
func (mr *MockICAControllerKeeperMockRecorder) SendTx(ctx, chanCap, connectionID, portID, icaPacketData, timeoutTimestamp interface{}) *gomock.Call
SendTx indicates an expected call of SendTx.
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 ¶
func (m *MockWasmKeeper) EXPECT() *MockWasmKeeperMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockWasmKeeper) GetContractInfo ¶
func (m *MockWasmKeeper) GetContractInfo(ctx types0.Context, contractAddress types0.AccAddress) *types.ContractInfo
GetContractInfo mocks base method.
func (*MockWasmKeeper) HasContractInfo ¶
func (m *MockWasmKeeper) HasContractInfo(ctx types0.Context, contractAddress types0.AccAddress) bool
HasContractInfo mocks base method.
func (*MockWasmKeeper) Sudo ¶
func (m *MockWasmKeeper) Sudo(ctx types0.Context, contractAddress types0.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) GetContractInfo ¶
func (mr *MockWasmKeeperMockRecorder) GetContractInfo(ctx, contractAddress interface{}) *gomock.Call
GetContractInfo indicates an expected call of GetContractInfo.
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.