mocks

package
v0.32.3 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: 3 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BankKeeper

type BankKeeper struct {
	mock.Mock
}

BankKeeper is an autogenerated mock type for the BankKeeper type

func NewBankKeeper

func NewBankKeeper(t mockConstructorTestingTNewBankKeeper) *BankKeeper

NewBankKeeper creates a new instance of BankKeeper. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*BankKeeper) EXPECT added in v0.24.0

func (_m *BankKeeper) EXPECT() *BankKeeper_Expecter

func (*BankKeeper) SendCoinsFromAccountToModule

func (_m *BankKeeper) SendCoinsFromAccountToModule(ctx types.Context, senderAddr types.AccAddress, recipientModule string, amt types.Coins) error

SendCoinsFromAccountToModule provides a mock function with given fields: ctx, senderAddr, recipientModule, amt

func (*BankKeeper) SendCoinsFromModuleToAccount

func (_m *BankKeeper) SendCoinsFromModuleToAccount(ctx types.Context, senderModule string, recipientAddr types.AccAddress, amt types.Coins) error

SendCoinsFromModuleToAccount provides a mock function with given fields: ctx, senderModule, recipientAddr, amt

func (*BankKeeper) SendCoinsFromModuleToModule added in v0.24.0

func (_m *BankKeeper) SendCoinsFromModuleToModule(ctx types.Context, senderModule string, recipientModule string, amt types.Coins) error

SendCoinsFromModuleToModule provides a mock function with given fields: ctx, senderModule, recipientModule, amt

type BankKeeper_Expecter added in v0.24.0

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

func (*BankKeeper_Expecter) SendCoinsFromAccountToModule added in v0.24.0

func (_e *BankKeeper_Expecter) SendCoinsFromAccountToModule(ctx interface{}, senderAddr interface{}, recipientModule interface{}, amt interface{}) *BankKeeper_SendCoinsFromAccountToModule_Call

SendCoinsFromAccountToModule is a helper method to define mock.On call

  • ctx types.Context
  • senderAddr types.AccAddress
  • recipientModule string
  • amt types.Coins

func (*BankKeeper_Expecter) SendCoinsFromModuleToAccount added in v0.24.0

func (_e *BankKeeper_Expecter) SendCoinsFromModuleToAccount(ctx interface{}, senderModule interface{}, recipientAddr interface{}, amt interface{}) *BankKeeper_SendCoinsFromModuleToAccount_Call

SendCoinsFromModuleToAccount is a helper method to define mock.On call

  • ctx types.Context
  • senderModule string
  • recipientAddr types.AccAddress
  • amt types.Coins

func (*BankKeeper_Expecter) SendCoinsFromModuleToModule added in v0.24.0

func (_e *BankKeeper_Expecter) SendCoinsFromModuleToModule(ctx interface{}, senderModule interface{}, recipientModule interface{}, amt interface{}) *BankKeeper_SendCoinsFromModuleToModule_Call

SendCoinsFromModuleToModule is a helper method to define mock.On call

  • ctx types.Context
  • senderModule string
  • recipientModule string
  • amt types.Coins

type BankKeeper_SendCoinsFromAccountToModule_Call added in v0.24.0

type BankKeeper_SendCoinsFromAccountToModule_Call struct {
	*mock.Call
}

BankKeeper_SendCoinsFromAccountToModule_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SendCoinsFromAccountToModule'

func (*BankKeeper_SendCoinsFromAccountToModule_Call) Return added in v0.24.0

func (*BankKeeper_SendCoinsFromAccountToModule_Call) Run added in v0.24.0

func (*BankKeeper_SendCoinsFromAccountToModule_Call) RunAndReturn added in v0.24.0

type BankKeeper_SendCoinsFromModuleToAccount_Call added in v0.24.0

type BankKeeper_SendCoinsFromModuleToAccount_Call struct {
	*mock.Call
}

BankKeeper_SendCoinsFromModuleToAccount_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SendCoinsFromModuleToAccount'

func (*BankKeeper_SendCoinsFromModuleToAccount_Call) Return added in v0.24.0

func (*BankKeeper_SendCoinsFromModuleToAccount_Call) Run added in v0.24.0

func (*BankKeeper_SendCoinsFromModuleToAccount_Call) RunAndReturn added in v0.24.0

type BankKeeper_SendCoinsFromModuleToModule_Call added in v0.24.0

type BankKeeper_SendCoinsFromModuleToModule_Call struct {
	*mock.Call
}

BankKeeper_SendCoinsFromModuleToModule_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SendCoinsFromModuleToModule'

func (*BankKeeper_SendCoinsFromModuleToModule_Call) Return added in v0.24.0

func (*BankKeeper_SendCoinsFromModuleToModule_Call) Run added in v0.24.0

func (*BankKeeper_SendCoinsFromModuleToModule_Call) RunAndReturn added in v0.24.0

type DistrKeeper added in v0.24.0

type DistrKeeper struct {
	mock.Mock
}

DistrKeeper is an autogenerated mock type for the DistrKeeper type

func NewDistrKeeper added in v0.24.0

func NewDistrKeeper(t mockConstructorTestingTNewDistrKeeper) *DistrKeeper

NewDistrKeeper creates a new instance of DistrKeeper. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*DistrKeeper) EXPECT added in v0.24.0

func (_m *DistrKeeper) EXPECT() *DistrKeeper_Expecter

func (*DistrKeeper) GetFeePool added in v0.24.0

func (_m *DistrKeeper) GetFeePool(ctx types.Context) distributiontypes.FeePool

GetFeePool provides a mock function with given fields: ctx

func (*DistrKeeper) SetFeePool added in v0.24.0

func (_m *DistrKeeper) SetFeePool(ctx types.Context, pool distributiontypes.FeePool)

SetFeePool provides a mock function with given fields: ctx, pool

type DistrKeeper_Expecter added in v0.24.0

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

func (*DistrKeeper_Expecter) GetFeePool added in v0.24.0

func (_e *DistrKeeper_Expecter) GetFeePool(ctx interface{}) *DistrKeeper_GetFeePool_Call

GetFeePool is a helper method to define mock.On call

  • ctx types.Context

func (*DistrKeeper_Expecter) SetFeePool added in v0.24.0

func (_e *DistrKeeper_Expecter) SetFeePool(ctx interface{}, pool interface{}) *DistrKeeper_SetFeePool_Call

SetFeePool is a helper method to define mock.On call

  • ctx types.Context
  • pool distributiontypes.FeePool

type DistrKeeper_GetFeePool_Call added in v0.24.0

type DistrKeeper_GetFeePool_Call struct {
	*mock.Call
}

DistrKeeper_GetFeePool_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetFeePool'

func (*DistrKeeper_GetFeePool_Call) Return added in v0.24.0

func (*DistrKeeper_GetFeePool_Call) Run added in v0.24.0

func (*DistrKeeper_GetFeePool_Call) RunAndReturn added in v0.24.0

type DistrKeeper_SetFeePool_Call added in v0.24.0

type DistrKeeper_SetFeePool_Call struct {
	*mock.Call
}

DistrKeeper_SetFeePool_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SetFeePool'

func (*DistrKeeper_SetFeePool_Call) Return added in v0.24.0

func (*DistrKeeper_SetFeePool_Call) Run added in v0.24.0

func (*DistrKeeper_SetFeePool_Call) RunAndReturn added in v0.24.0

type TakeKeeper added in v0.24.0

type TakeKeeper struct {
	mock.Mock
}

TakeKeeper is an autogenerated mock type for the TakeKeeper type

func NewTakeKeeper added in v0.24.0

func NewTakeKeeper(t mockConstructorTestingTNewTakeKeeper) *TakeKeeper

NewTakeKeeper creates a new instance of TakeKeeper. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*TakeKeeper) EXPECT added in v0.24.0

func (_m *TakeKeeper) EXPECT() *TakeKeeper_Expecter

func (*TakeKeeper) SubtractFees added in v0.24.0

func (_m *TakeKeeper) SubtractFees(ctx types.Context, amt types.Coin) (types.Coin, types.Coin, error)

SubtractFees provides a mock function with given fields: ctx, amt

type TakeKeeper_Expecter added in v0.24.0

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

func (*TakeKeeper_Expecter) SubtractFees added in v0.24.0

func (_e *TakeKeeper_Expecter) SubtractFees(ctx interface{}, amt interface{}) *TakeKeeper_SubtractFees_Call

SubtractFees is a helper method to define mock.On call

  • ctx types.Context
  • amt types.Coin

type TakeKeeper_SubtractFees_Call added in v0.24.0

type TakeKeeper_SubtractFees_Call struct {
	*mock.Call
}

TakeKeeper_SubtractFees_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SubtractFees'

func (*TakeKeeper_SubtractFees_Call) Return added in v0.24.0

func (*TakeKeeper_SubtractFees_Call) Run added in v0.24.0

func (*TakeKeeper_SubtractFees_Call) RunAndReturn added in v0.24.0

Jump to

Keyboard shortcuts

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