Documentation ¶
Overview ¶
Package mock_types is a generated GoMock package.
Index ¶
- type MockAccountKeeper
- type MockAccountKeeperMockRecorder
- type MockChannelKeeper
- type MockChannelKeeperMockRecorder
- type MockContractManagerKeeper
- func (m *MockContractManagerKeeper) AddContractFailure(ctx types.Context, channelID, address string, ackID uint64, ackType string)
- func (m *MockContractManagerKeeper) EXPECT() *MockContractManagerKeeperMockRecorder
- func (m *MockContractManagerKeeper) HasContractInfo(ctx types.Context, contractAddress types.AccAddress) bool
- func (m *MockContractManagerKeeper) SudoError(ctx types.Context, senderAddress types.AccAddress, request types1.Packet, ...) ([]byte, error)
- func (m *MockContractManagerKeeper) SudoResponse(ctx types.Context, senderAddress types.AccAddress, request types1.Packet, ...) ([]byte, error)
- func (m *MockContractManagerKeeper) SudoTimeout(ctx types.Context, senderAddress types.AccAddress, request types1.Packet) ([]byte, error)
- type MockContractManagerKeeperMockRecorder
- func (mr *MockContractManagerKeeperMockRecorder) AddContractFailure(ctx, channelID, address, ackID, ackType interface{}) *gomock.Call
- func (mr *MockContractManagerKeeperMockRecorder) HasContractInfo(ctx, contractAddress interface{}) *gomock.Call
- func (mr *MockContractManagerKeeperMockRecorder) SudoError(ctx, senderAddress, request, details interface{}) *gomock.Call
- func (mr *MockContractManagerKeeperMockRecorder) SudoResponse(ctx, senderAddress, request, msg interface{}) *gomock.Call
- func (mr *MockContractManagerKeeperMockRecorder) SudoTimeout(ctx, senderAddress, request interface{}) *gomock.Call
- type MockFeeRefunderKeeper
- func (m *MockFeeRefunderKeeper) DistributeAcknowledgementFee(ctx types.Context, receiver types.AccAddress, packetID types2.PacketID)
- func (m *MockFeeRefunderKeeper) DistributeTimeoutFee(ctx types.Context, receiver types.AccAddress, packetID types2.PacketID)
- func (m *MockFeeRefunderKeeper) EXPECT() *MockFeeRefunderKeeperMockRecorder
- func (m *MockFeeRefunderKeeper) LockFees(ctx types.Context, payer types.AccAddress, packetID types2.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
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) 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 ¶
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 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) 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 MockContractManagerKeeper ¶
type MockContractManagerKeeper struct {
// contains filtered or unexported fields
}
MockContractManagerKeeper is a mock of ContractManagerKeeper interface.
func NewMockContractManagerKeeper ¶
func NewMockContractManagerKeeper(ctrl *gomock.Controller) *MockContractManagerKeeper
NewMockContractManagerKeeper creates a new mock instance.
func (*MockContractManagerKeeper) AddContractFailure ¶
func (m *MockContractManagerKeeper) AddContractFailure(ctx types.Context, channelID, address string, ackID uint64, ackType string)
AddContractFailure mocks base method.
func (*MockContractManagerKeeper) EXPECT ¶
func (m *MockContractManagerKeeper) EXPECT() *MockContractManagerKeeperMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockContractManagerKeeper) HasContractInfo ¶
func (m *MockContractManagerKeeper) HasContractInfo(ctx types.Context, contractAddress types.AccAddress) bool
HasContractInfo mocks base method.
func (*MockContractManagerKeeper) SudoError ¶
func (m *MockContractManagerKeeper) SudoError(ctx types.Context, senderAddress types.AccAddress, request types1.Packet, details string) ([]byte, error)
SudoError mocks base method.
func (*MockContractManagerKeeper) SudoResponse ¶
func (m *MockContractManagerKeeper) SudoResponse(ctx types.Context, senderAddress types.AccAddress, request types1.Packet, msg []byte) ([]byte, error)
SudoResponse mocks base method.
func (*MockContractManagerKeeper) SudoTimeout ¶
func (m *MockContractManagerKeeper) SudoTimeout(ctx types.Context, senderAddress types.AccAddress, request types1.Packet) ([]byte, error)
SudoTimeout mocks base method.
type MockContractManagerKeeperMockRecorder ¶
type MockContractManagerKeeperMockRecorder struct {
// contains filtered or unexported fields
}
MockContractManagerKeeperMockRecorder is the mock recorder for MockContractManagerKeeper.
func (*MockContractManagerKeeperMockRecorder) AddContractFailure ¶
func (mr *MockContractManagerKeeperMockRecorder) AddContractFailure(ctx, channelID, address, ackID, ackType interface{}) *gomock.Call
AddContractFailure indicates an expected call of AddContractFailure.
func (*MockContractManagerKeeperMockRecorder) HasContractInfo ¶
func (mr *MockContractManagerKeeperMockRecorder) HasContractInfo(ctx, contractAddress interface{}) *gomock.Call
HasContractInfo indicates an expected call of HasContractInfo.
func (*MockContractManagerKeeperMockRecorder) SudoError ¶
func (mr *MockContractManagerKeeperMockRecorder) SudoError(ctx, senderAddress, request, details interface{}) *gomock.Call
SudoError indicates an expected call of SudoError.
func (*MockContractManagerKeeperMockRecorder) SudoResponse ¶
func (mr *MockContractManagerKeeperMockRecorder) SudoResponse(ctx, senderAddress, request, msg interface{}) *gomock.Call
SudoResponse indicates an expected call of SudoResponse.
func (*MockContractManagerKeeperMockRecorder) SudoTimeout ¶
func (mr *MockContractManagerKeeperMockRecorder) SudoTimeout(ctx, senderAddress, request interface{}) *gomock.Call
SudoTimeout indicates an expected call of SudoTimeout.
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 ¶
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.