github.com/Finschia/finschia-sdk@v0.48.1/tests/mocks/types_module_module.go (about)

     1  // Code generated by MockGen. DO NOT EDIT.
     2  // Source: types/module/module.go
     3  
     4  // Package mocks is a generated GoMock package.
     5  package mocks
     6  
     7  import (
     8  	json "encoding/json"
     9  	reflect "reflect"
    10  
    11  	gomock "github.com/golang/mock/gomock"
    12  	runtime "github.com/grpc-ecosystem/grpc-gateway/runtime"
    13  	client "github.com/Finschia/finschia-sdk/client"
    14  	codec "github.com/Finschia/finschia-sdk/codec"
    15  	types "github.com/Finschia/finschia-sdk/codec/types"
    16  	types0 "github.com/Finschia/finschia-sdk/types"
    17  	module "github.com/Finschia/finschia-sdk/types/module"
    18  	ocabci "github.com/Finschia/ostracon/abci/types"
    19  	cobra "github.com/spf13/cobra"
    20  	abci "github.com/tendermint/tendermint/abci/types"
    21  )
    22  
    23  // MockAppModuleBasic is a mock of AppModuleBasic interface.
    24  type MockAppModuleBasic struct {
    25  	ctrl     *gomock.Controller
    26  	recorder *MockAppModuleBasicMockRecorder
    27  }
    28  
    29  // MockAppModuleBasicMockRecorder is the mock recorder for MockAppModuleBasic.
    30  type MockAppModuleBasicMockRecorder struct {
    31  	mock *MockAppModuleBasic
    32  }
    33  
    34  // NewMockAppModuleBasic creates a new mock instance.
    35  func NewMockAppModuleBasic(ctrl *gomock.Controller) *MockAppModuleBasic {
    36  	mock := &MockAppModuleBasic{ctrl: ctrl}
    37  	mock.recorder = &MockAppModuleBasicMockRecorder{mock}
    38  	return mock
    39  }
    40  
    41  // EXPECT returns an object that allows the caller to indicate expected use.
    42  func (m *MockAppModuleBasic) EXPECT() *MockAppModuleBasicMockRecorder {
    43  	return m.recorder
    44  }
    45  
    46  // DefaultGenesis mocks base method.
    47  func (m *MockAppModuleBasic) DefaultGenesis(arg0 codec.JSONCodec) json.RawMessage {
    48  	m.ctrl.T.Helper()
    49  	ret := m.ctrl.Call(m, "DefaultGenesis", arg0)
    50  	ret0, _ := ret[0].(json.RawMessage)
    51  	return ret0
    52  }
    53  
    54  // DefaultGenesis indicates an expected call of DefaultGenesis.
    55  func (mr *MockAppModuleBasicMockRecorder) DefaultGenesis(arg0 interface{}) *gomock.Call {
    56  	mr.mock.ctrl.T.Helper()
    57  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DefaultGenesis", reflect.TypeOf((*MockAppModuleBasic)(nil).DefaultGenesis), arg0)
    58  }
    59  
    60  // GetQueryCmd mocks base method.
    61  func (m *MockAppModuleBasic) GetQueryCmd() *cobra.Command {
    62  	m.ctrl.T.Helper()
    63  	ret := m.ctrl.Call(m, "GetQueryCmd")
    64  	ret0, _ := ret[0].(*cobra.Command)
    65  	return ret0
    66  }
    67  
    68  // GetQueryCmd indicates an expected call of GetQueryCmd.
    69  func (mr *MockAppModuleBasicMockRecorder) GetQueryCmd() *gomock.Call {
    70  	mr.mock.ctrl.T.Helper()
    71  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetQueryCmd", reflect.TypeOf((*MockAppModuleBasic)(nil).GetQueryCmd))
    72  }
    73  
    74  // GetTxCmd mocks base method.
    75  func (m *MockAppModuleBasic) GetTxCmd() *cobra.Command {
    76  	m.ctrl.T.Helper()
    77  	ret := m.ctrl.Call(m, "GetTxCmd")
    78  	ret0, _ := ret[0].(*cobra.Command)
    79  	return ret0
    80  }
    81  
    82  // GetTxCmd indicates an expected call of GetTxCmd.
    83  func (mr *MockAppModuleBasicMockRecorder) GetTxCmd() *gomock.Call {
    84  	mr.mock.ctrl.T.Helper()
    85  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetTxCmd", reflect.TypeOf((*MockAppModuleBasic)(nil).GetTxCmd))
    86  }
    87  
    88  // Name mocks base method.
    89  func (m *MockAppModuleBasic) Name() string {
    90  	m.ctrl.T.Helper()
    91  	ret := m.ctrl.Call(m, "Name")
    92  	ret0, _ := ret[0].(string)
    93  	return ret0
    94  }
    95  
    96  // Name indicates an expected call of Name.
    97  func (mr *MockAppModuleBasicMockRecorder) Name() *gomock.Call {
    98  	mr.mock.ctrl.T.Helper()
    99  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Name", reflect.TypeOf((*MockAppModuleBasic)(nil).Name))
   100  }
   101  
   102  // RegisterGRPCGatewayRoutes mocks base method.
   103  func (m *MockAppModuleBasic) RegisterGRPCGatewayRoutes(arg0 client.Context, arg1 *runtime.ServeMux) {
   104  	m.ctrl.T.Helper()
   105  	m.ctrl.Call(m, "RegisterGRPCGatewayRoutes", arg0, arg1)
   106  }
   107  
   108  // RegisterGRPCGatewayRoutes indicates an expected call of RegisterGRPCGatewayRoutes.
   109  func (mr *MockAppModuleBasicMockRecorder) RegisterGRPCGatewayRoutes(arg0, arg1 interface{}) *gomock.Call {
   110  	mr.mock.ctrl.T.Helper()
   111  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterGRPCGatewayRoutes", reflect.TypeOf((*MockAppModuleBasic)(nil).RegisterGRPCGatewayRoutes), arg0, arg1)
   112  }
   113  
   114  // RegisterInterfaces mocks base method.
   115  func (m *MockAppModuleBasic) RegisterInterfaces(arg0 types.InterfaceRegistry) {
   116  	m.ctrl.T.Helper()
   117  	m.ctrl.Call(m, "RegisterInterfaces", arg0)
   118  }
   119  
   120  // RegisterInterfaces indicates an expected call of RegisterInterfaces.
   121  func (mr *MockAppModuleBasicMockRecorder) RegisterInterfaces(arg0 interface{}) *gomock.Call {
   122  	mr.mock.ctrl.T.Helper()
   123  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterInterfaces", reflect.TypeOf((*MockAppModuleBasic)(nil).RegisterInterfaces), arg0)
   124  }
   125  
   126  // RegisterLegacyAminoCodec mocks base method.
   127  func (m *MockAppModuleBasic) RegisterLegacyAminoCodec(arg0 *codec.LegacyAmino) {
   128  	m.ctrl.T.Helper()
   129  	m.ctrl.Call(m, "RegisterLegacyAminoCodec", arg0)
   130  }
   131  
   132  // RegisterLegacyAminoCodec indicates an expected call of RegisterLegacyAminoCodec.
   133  func (mr *MockAppModuleBasicMockRecorder) RegisterLegacyAminoCodec(arg0 interface{}) *gomock.Call {
   134  	mr.mock.ctrl.T.Helper()
   135  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterLegacyAminoCodec", reflect.TypeOf((*MockAppModuleBasic)(nil).RegisterLegacyAminoCodec), arg0)
   136  }
   137  
   138  // ValidateGenesis mocks base method.
   139  func (m *MockAppModuleBasic) ValidateGenesis(arg0 codec.JSONCodec, arg1 client.TxEncodingConfig, arg2 json.RawMessage) error {
   140  	m.ctrl.T.Helper()
   141  	ret := m.ctrl.Call(m, "ValidateGenesis", arg0, arg1, arg2)
   142  	ret0, _ := ret[0].(error)
   143  	return ret0
   144  }
   145  
   146  // ValidateGenesis indicates an expected call of ValidateGenesis.
   147  func (mr *MockAppModuleBasicMockRecorder) ValidateGenesis(arg0, arg1, arg2 interface{}) *gomock.Call {
   148  	mr.mock.ctrl.T.Helper()
   149  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ValidateGenesis", reflect.TypeOf((*MockAppModuleBasic)(nil).ValidateGenesis), arg0, arg1, arg2)
   150  }
   151  
   152  // MockAppModuleGenesis is a mock of AppModuleGenesis interface.
   153  type MockAppModuleGenesis struct {
   154  	ctrl     *gomock.Controller
   155  	recorder *MockAppModuleGenesisMockRecorder
   156  }
   157  
   158  // MockAppModuleGenesisMockRecorder is the mock recorder for MockAppModuleGenesis.
   159  type MockAppModuleGenesisMockRecorder struct {
   160  	mock *MockAppModuleGenesis
   161  }
   162  
   163  // NewMockAppModuleGenesis creates a new mock instance.
   164  func NewMockAppModuleGenesis(ctrl *gomock.Controller) *MockAppModuleGenesis {
   165  	mock := &MockAppModuleGenesis{ctrl: ctrl}
   166  	mock.recorder = &MockAppModuleGenesisMockRecorder{mock}
   167  	return mock
   168  }
   169  
   170  // EXPECT returns an object that allows the caller to indicate expected use.
   171  func (m *MockAppModuleGenesis) EXPECT() *MockAppModuleGenesisMockRecorder {
   172  	return m.recorder
   173  }
   174  
   175  // DefaultGenesis mocks base method.
   176  func (m *MockAppModuleGenesis) DefaultGenesis(arg0 codec.JSONCodec) json.RawMessage {
   177  	m.ctrl.T.Helper()
   178  	ret := m.ctrl.Call(m, "DefaultGenesis", arg0)
   179  	ret0, _ := ret[0].(json.RawMessage)
   180  	return ret0
   181  }
   182  
   183  // DefaultGenesis indicates an expected call of DefaultGenesis.
   184  func (mr *MockAppModuleGenesisMockRecorder) DefaultGenesis(arg0 interface{}) *gomock.Call {
   185  	mr.mock.ctrl.T.Helper()
   186  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DefaultGenesis", reflect.TypeOf((*MockAppModuleGenesis)(nil).DefaultGenesis), arg0)
   187  }
   188  
   189  // ExportGenesis mocks base method.
   190  func (m *MockAppModuleGenesis) ExportGenesis(arg0 types0.Context, arg1 codec.JSONCodec) json.RawMessage {
   191  	m.ctrl.T.Helper()
   192  	ret := m.ctrl.Call(m, "ExportGenesis", arg0, arg1)
   193  	ret0, _ := ret[0].(json.RawMessage)
   194  	return ret0
   195  }
   196  
   197  // ExportGenesis indicates an expected call of ExportGenesis.
   198  func (mr *MockAppModuleGenesisMockRecorder) ExportGenesis(arg0, arg1 interface{}) *gomock.Call {
   199  	mr.mock.ctrl.T.Helper()
   200  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ExportGenesis", reflect.TypeOf((*MockAppModuleGenesis)(nil).ExportGenesis), arg0, arg1)
   201  }
   202  
   203  // GetQueryCmd mocks base method.
   204  func (m *MockAppModuleGenesis) GetQueryCmd() *cobra.Command {
   205  	m.ctrl.T.Helper()
   206  	ret := m.ctrl.Call(m, "GetQueryCmd")
   207  	ret0, _ := ret[0].(*cobra.Command)
   208  	return ret0
   209  }
   210  
   211  // GetQueryCmd indicates an expected call of GetQueryCmd.
   212  func (mr *MockAppModuleGenesisMockRecorder) GetQueryCmd() *gomock.Call {
   213  	mr.mock.ctrl.T.Helper()
   214  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetQueryCmd", reflect.TypeOf((*MockAppModuleGenesis)(nil).GetQueryCmd))
   215  }
   216  
   217  // GetTxCmd mocks base method.
   218  func (m *MockAppModuleGenesis) GetTxCmd() *cobra.Command {
   219  	m.ctrl.T.Helper()
   220  	ret := m.ctrl.Call(m, "GetTxCmd")
   221  	ret0, _ := ret[0].(*cobra.Command)
   222  	return ret0
   223  }
   224  
   225  // GetTxCmd indicates an expected call of GetTxCmd.
   226  func (mr *MockAppModuleGenesisMockRecorder) GetTxCmd() *gomock.Call {
   227  	mr.mock.ctrl.T.Helper()
   228  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetTxCmd", reflect.TypeOf((*MockAppModuleGenesis)(nil).GetTxCmd))
   229  }
   230  
   231  // InitGenesis mocks base method.
   232  func (m *MockAppModuleGenesis) InitGenesis(arg0 types0.Context, arg1 codec.JSONCodec, arg2 json.RawMessage) []abci.ValidatorUpdate {
   233  	m.ctrl.T.Helper()
   234  	ret := m.ctrl.Call(m, "InitGenesis", arg0, arg1, arg2)
   235  	ret0, _ := ret[0].([]abci.ValidatorUpdate)
   236  	return ret0
   237  }
   238  
   239  // InitGenesis indicates an expected call of InitGenesis.
   240  func (mr *MockAppModuleGenesisMockRecorder) InitGenesis(arg0, arg1, arg2 interface{}) *gomock.Call {
   241  	mr.mock.ctrl.T.Helper()
   242  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "InitGenesis", reflect.TypeOf((*MockAppModuleGenesis)(nil).InitGenesis), arg0, arg1, arg2)
   243  }
   244  
   245  // Name mocks base method.
   246  func (m *MockAppModuleGenesis) Name() string {
   247  	m.ctrl.T.Helper()
   248  	ret := m.ctrl.Call(m, "Name")
   249  	ret0, _ := ret[0].(string)
   250  	return ret0
   251  }
   252  
   253  // Name indicates an expected call of Name.
   254  func (mr *MockAppModuleGenesisMockRecorder) Name() *gomock.Call {
   255  	mr.mock.ctrl.T.Helper()
   256  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Name", reflect.TypeOf((*MockAppModuleGenesis)(nil).Name))
   257  }
   258  
   259  // RegisterGRPCGatewayRoutes mocks base method.
   260  func (m *MockAppModuleGenesis) RegisterGRPCGatewayRoutes(arg0 client.Context, arg1 *runtime.ServeMux) {
   261  	m.ctrl.T.Helper()
   262  	m.ctrl.Call(m, "RegisterGRPCGatewayRoutes", arg0, arg1)
   263  }
   264  
   265  // RegisterGRPCGatewayRoutes indicates an expected call of RegisterGRPCGatewayRoutes.
   266  func (mr *MockAppModuleGenesisMockRecorder) RegisterGRPCGatewayRoutes(arg0, arg1 interface{}) *gomock.Call {
   267  	mr.mock.ctrl.T.Helper()
   268  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterGRPCGatewayRoutes", reflect.TypeOf((*MockAppModuleGenesis)(nil).RegisterGRPCGatewayRoutes), arg0, arg1)
   269  }
   270  
   271  // RegisterInterfaces mocks base method.
   272  func (m *MockAppModuleGenesis) RegisterInterfaces(arg0 types.InterfaceRegistry) {
   273  	m.ctrl.T.Helper()
   274  	m.ctrl.Call(m, "RegisterInterfaces", arg0)
   275  }
   276  
   277  // RegisterInterfaces indicates an expected call of RegisterInterfaces.
   278  func (mr *MockAppModuleGenesisMockRecorder) RegisterInterfaces(arg0 interface{}) *gomock.Call {
   279  	mr.mock.ctrl.T.Helper()
   280  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterInterfaces", reflect.TypeOf((*MockAppModuleGenesis)(nil).RegisterInterfaces), arg0)
   281  }
   282  
   283  // RegisterLegacyAminoCodec mocks base method.
   284  func (m *MockAppModuleGenesis) RegisterLegacyAminoCodec(arg0 *codec.LegacyAmino) {
   285  	m.ctrl.T.Helper()
   286  	m.ctrl.Call(m, "RegisterLegacyAminoCodec", arg0)
   287  }
   288  
   289  // RegisterLegacyAminoCodec indicates an expected call of RegisterLegacyAminoCodec.
   290  func (mr *MockAppModuleGenesisMockRecorder) RegisterLegacyAminoCodec(arg0 interface{}) *gomock.Call {
   291  	mr.mock.ctrl.T.Helper()
   292  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterLegacyAminoCodec", reflect.TypeOf((*MockAppModuleGenesis)(nil).RegisterLegacyAminoCodec), arg0)
   293  }
   294  
   295  // ValidateGenesis mocks base method.
   296  func (m *MockAppModuleGenesis) ValidateGenesis(arg0 codec.JSONCodec, arg1 client.TxEncodingConfig, arg2 json.RawMessage) error {
   297  	m.ctrl.T.Helper()
   298  	ret := m.ctrl.Call(m, "ValidateGenesis", arg0, arg1, arg2)
   299  	ret0, _ := ret[0].(error)
   300  	return ret0
   301  }
   302  
   303  // ValidateGenesis indicates an expected call of ValidateGenesis.
   304  func (mr *MockAppModuleGenesisMockRecorder) ValidateGenesis(arg0, arg1, arg2 interface{}) *gomock.Call {
   305  	mr.mock.ctrl.T.Helper()
   306  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ValidateGenesis", reflect.TypeOf((*MockAppModuleGenesis)(nil).ValidateGenesis), arg0, arg1, arg2)
   307  }
   308  
   309  // MockAppModule is a mock of AppModule interface.
   310  type MockAppModule struct {
   311  	ctrl     *gomock.Controller
   312  	recorder *MockAppModuleMockRecorder
   313  }
   314  
   315  // MockAppModuleMockRecorder is the mock recorder for MockAppModule.
   316  type MockAppModuleMockRecorder struct {
   317  	mock *MockAppModule
   318  }
   319  
   320  // NewMockAppModule creates a new mock instance.
   321  func NewMockAppModule(ctrl *gomock.Controller) *MockAppModule {
   322  	mock := &MockAppModule{ctrl: ctrl}
   323  	mock.recorder = &MockAppModuleMockRecorder{mock}
   324  	return mock
   325  }
   326  
   327  // EXPECT returns an object that allows the caller to indicate expected use.
   328  func (m *MockAppModule) EXPECT() *MockAppModuleMockRecorder {
   329  	return m.recorder
   330  }
   331  
   332  // BeginBlock mocks base method.
   333  func (m *MockAppModule) BeginBlock(arg0 types0.Context, arg1 ocabci.RequestBeginBlock) {
   334  	m.ctrl.T.Helper()
   335  	m.ctrl.Call(m, "BeginBlock", arg0, arg1)
   336  }
   337  
   338  // BeginBlock indicates an expected call of BeginBlock.
   339  func (mr *MockAppModuleMockRecorder) BeginBlock(arg0, arg1 interface{}) *gomock.Call {
   340  	mr.mock.ctrl.T.Helper()
   341  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "BeginBlock", reflect.TypeOf((*MockAppModule)(nil).BeginBlock), arg0, arg1)
   342  }
   343  
   344  // ConsensusVersion mocks base method.
   345  func (m *MockAppModule) ConsensusVersion() uint64 {
   346  	m.ctrl.T.Helper()
   347  	ret := m.ctrl.Call(m, "ConsensusVersion")
   348  	ret0, _ := ret[0].(uint64)
   349  	return ret0
   350  }
   351  
   352  // ConsensusVersion indicates an expected call of ConsensusVersion.
   353  func (mr *MockAppModuleMockRecorder) ConsensusVersion() *gomock.Call {
   354  	mr.mock.ctrl.T.Helper()
   355  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ConsensusVersion", reflect.TypeOf((*MockAppModule)(nil).ConsensusVersion))
   356  }
   357  
   358  // DefaultGenesis mocks base method.
   359  func (m *MockAppModule) DefaultGenesis(arg0 codec.JSONCodec) json.RawMessage {
   360  	m.ctrl.T.Helper()
   361  	ret := m.ctrl.Call(m, "DefaultGenesis", arg0)
   362  	ret0, _ := ret[0].(json.RawMessage)
   363  	return ret0
   364  }
   365  
   366  // DefaultGenesis indicates an expected call of DefaultGenesis.
   367  func (mr *MockAppModuleMockRecorder) DefaultGenesis(arg0 interface{}) *gomock.Call {
   368  	mr.mock.ctrl.T.Helper()
   369  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DefaultGenesis", reflect.TypeOf((*MockAppModule)(nil).DefaultGenesis), arg0)
   370  }
   371  
   372  // EndBlock mocks base method.
   373  func (m *MockAppModule) EndBlock(arg0 types0.Context, arg1 abci.RequestEndBlock) []abci.ValidatorUpdate {
   374  	m.ctrl.T.Helper()
   375  	ret := m.ctrl.Call(m, "EndBlock", arg0, arg1)
   376  	ret0, _ := ret[0].([]abci.ValidatorUpdate)
   377  	return ret0
   378  }
   379  
   380  // EndBlock indicates an expected call of EndBlock.
   381  func (mr *MockAppModuleMockRecorder) EndBlock(arg0, arg1 interface{}) *gomock.Call {
   382  	mr.mock.ctrl.T.Helper()
   383  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "EndBlock", reflect.TypeOf((*MockAppModule)(nil).EndBlock), arg0, arg1)
   384  }
   385  
   386  // ExportGenesis mocks base method.
   387  func (m *MockAppModule) ExportGenesis(arg0 types0.Context, arg1 codec.JSONCodec) json.RawMessage {
   388  	m.ctrl.T.Helper()
   389  	ret := m.ctrl.Call(m, "ExportGenesis", arg0, arg1)
   390  	ret0, _ := ret[0].(json.RawMessage)
   391  	return ret0
   392  }
   393  
   394  // ExportGenesis indicates an expected call of ExportGenesis.
   395  func (mr *MockAppModuleMockRecorder) ExportGenesis(arg0, arg1 interface{}) *gomock.Call {
   396  	mr.mock.ctrl.T.Helper()
   397  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ExportGenesis", reflect.TypeOf((*MockAppModule)(nil).ExportGenesis), arg0, arg1)
   398  }
   399  
   400  // GetQueryCmd mocks base method.
   401  func (m *MockAppModule) GetQueryCmd() *cobra.Command {
   402  	m.ctrl.T.Helper()
   403  	ret := m.ctrl.Call(m, "GetQueryCmd")
   404  	ret0, _ := ret[0].(*cobra.Command)
   405  	return ret0
   406  }
   407  
   408  // GetQueryCmd indicates an expected call of GetQueryCmd.
   409  func (mr *MockAppModuleMockRecorder) GetQueryCmd() *gomock.Call {
   410  	mr.mock.ctrl.T.Helper()
   411  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetQueryCmd", reflect.TypeOf((*MockAppModule)(nil).GetQueryCmd))
   412  }
   413  
   414  // GetTxCmd mocks base method.
   415  func (m *MockAppModule) GetTxCmd() *cobra.Command {
   416  	m.ctrl.T.Helper()
   417  	ret := m.ctrl.Call(m, "GetTxCmd")
   418  	ret0, _ := ret[0].(*cobra.Command)
   419  	return ret0
   420  }
   421  
   422  // GetTxCmd indicates an expected call of GetTxCmd.
   423  func (mr *MockAppModuleMockRecorder) GetTxCmd() *gomock.Call {
   424  	mr.mock.ctrl.T.Helper()
   425  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetTxCmd", reflect.TypeOf((*MockAppModule)(nil).GetTxCmd))
   426  }
   427  
   428  // InitGenesis mocks base method.
   429  func (m *MockAppModule) InitGenesis(arg0 types0.Context, arg1 codec.JSONCodec, arg2 json.RawMessage) []abci.ValidatorUpdate {
   430  	m.ctrl.T.Helper()
   431  	ret := m.ctrl.Call(m, "InitGenesis", arg0, arg1, arg2)
   432  	ret0, _ := ret[0].([]abci.ValidatorUpdate)
   433  	return ret0
   434  }
   435  
   436  // InitGenesis indicates an expected call of InitGenesis.
   437  func (mr *MockAppModuleMockRecorder) InitGenesis(arg0, arg1, arg2 interface{}) *gomock.Call {
   438  	mr.mock.ctrl.T.Helper()
   439  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "InitGenesis", reflect.TypeOf((*MockAppModule)(nil).InitGenesis), arg0, arg1, arg2)
   440  }
   441  
   442  // LegacyQuerierHandler mocks base method.
   443  func (m *MockAppModule) LegacyQuerierHandler(arg0 *codec.LegacyAmino) types0.Querier {
   444  	m.ctrl.T.Helper()
   445  	ret := m.ctrl.Call(m, "LegacyQuerierHandler", arg0)
   446  	ret0, _ := ret[0].(types0.Querier)
   447  	return ret0
   448  }
   449  
   450  // LegacyQuerierHandler indicates an expected call of LegacyQuerierHandler.
   451  func (mr *MockAppModuleMockRecorder) LegacyQuerierHandler(arg0 interface{}) *gomock.Call {
   452  	mr.mock.ctrl.T.Helper()
   453  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LegacyQuerierHandler", reflect.TypeOf((*MockAppModule)(nil).LegacyQuerierHandler), arg0)
   454  }
   455  
   456  // Name mocks base method.
   457  func (m *MockAppModule) Name() string {
   458  	m.ctrl.T.Helper()
   459  	ret := m.ctrl.Call(m, "Name")
   460  	ret0, _ := ret[0].(string)
   461  	return ret0
   462  }
   463  
   464  // Name indicates an expected call of Name.
   465  func (mr *MockAppModuleMockRecorder) Name() *gomock.Call {
   466  	mr.mock.ctrl.T.Helper()
   467  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Name", reflect.TypeOf((*MockAppModule)(nil).Name))
   468  }
   469  
   470  // QuerierRoute mocks base method.
   471  func (m *MockAppModule) QuerierRoute() string {
   472  	m.ctrl.T.Helper()
   473  	ret := m.ctrl.Call(m, "QuerierRoute")
   474  	ret0, _ := ret[0].(string)
   475  	return ret0
   476  }
   477  
   478  // QuerierRoute indicates an expected call of QuerierRoute.
   479  func (mr *MockAppModuleMockRecorder) QuerierRoute() *gomock.Call {
   480  	mr.mock.ctrl.T.Helper()
   481  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "QuerierRoute", reflect.TypeOf((*MockAppModule)(nil).QuerierRoute))
   482  }
   483  
   484  // RegisterGRPCGatewayRoutes mocks base method.
   485  func (m *MockAppModule) RegisterGRPCGatewayRoutes(arg0 client.Context, arg1 *runtime.ServeMux) {
   486  	m.ctrl.T.Helper()
   487  	m.ctrl.Call(m, "RegisterGRPCGatewayRoutes", arg0, arg1)
   488  }
   489  
   490  // RegisterGRPCGatewayRoutes indicates an expected call of RegisterGRPCGatewayRoutes.
   491  func (mr *MockAppModuleMockRecorder) RegisterGRPCGatewayRoutes(arg0, arg1 interface{}) *gomock.Call {
   492  	mr.mock.ctrl.T.Helper()
   493  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterGRPCGatewayRoutes", reflect.TypeOf((*MockAppModule)(nil).RegisterGRPCGatewayRoutes), arg0, arg1)
   494  }
   495  
   496  // RegisterInterfaces mocks base method.
   497  func (m *MockAppModule) RegisterInterfaces(arg0 types.InterfaceRegistry) {
   498  	m.ctrl.T.Helper()
   499  	m.ctrl.Call(m, "RegisterInterfaces", arg0)
   500  }
   501  
   502  // RegisterInterfaces indicates an expected call of RegisterInterfaces.
   503  func (mr *MockAppModuleMockRecorder) RegisterInterfaces(arg0 interface{}) *gomock.Call {
   504  	mr.mock.ctrl.T.Helper()
   505  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterInterfaces", reflect.TypeOf((*MockAppModule)(nil).RegisterInterfaces), arg0)
   506  }
   507  
   508  // RegisterInvariants mocks base method.
   509  func (m *MockAppModule) RegisterInvariants(arg0 types0.InvariantRegistry) {
   510  	m.ctrl.T.Helper()
   511  	m.ctrl.Call(m, "RegisterInvariants", arg0)
   512  }
   513  
   514  // RegisterInvariants indicates an expected call of RegisterInvariants.
   515  func (mr *MockAppModuleMockRecorder) RegisterInvariants(arg0 interface{}) *gomock.Call {
   516  	mr.mock.ctrl.T.Helper()
   517  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterInvariants", reflect.TypeOf((*MockAppModule)(nil).RegisterInvariants), arg0)
   518  }
   519  
   520  // RegisterLegacyAminoCodec mocks base method.
   521  func (m *MockAppModule) RegisterLegacyAminoCodec(arg0 *codec.LegacyAmino) {
   522  	m.ctrl.T.Helper()
   523  	m.ctrl.Call(m, "RegisterLegacyAminoCodec", arg0)
   524  }
   525  
   526  // RegisterLegacyAminoCodec indicates an expected call of RegisterLegacyAminoCodec.
   527  func (mr *MockAppModuleMockRecorder) RegisterLegacyAminoCodec(arg0 interface{}) *gomock.Call {
   528  	mr.mock.ctrl.T.Helper()
   529  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterLegacyAminoCodec", reflect.TypeOf((*MockAppModule)(nil).RegisterLegacyAminoCodec), arg0)
   530  }
   531  
   532  // RegisterServices mocks base method.
   533  func (m *MockAppModule) RegisterServices(arg0 module.Configurator) {
   534  	m.ctrl.T.Helper()
   535  	m.ctrl.Call(m, "RegisterServices", arg0)
   536  }
   537  
   538  // RegisterServices indicates an expected call of RegisterServices.
   539  func (mr *MockAppModuleMockRecorder) RegisterServices(arg0 interface{}) *gomock.Call {
   540  	mr.mock.ctrl.T.Helper()
   541  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterServices", reflect.TypeOf((*MockAppModule)(nil).RegisterServices), arg0)
   542  }
   543  
   544  // Route mocks base method.
   545  func (m *MockAppModule) Route() types0.Route {
   546  	m.ctrl.T.Helper()
   547  	ret := m.ctrl.Call(m, "Route")
   548  	ret0, _ := ret[0].(types0.Route)
   549  	return ret0
   550  }
   551  
   552  // Route indicates an expected call of Route.
   553  func (mr *MockAppModuleMockRecorder) Route() *gomock.Call {
   554  	mr.mock.ctrl.T.Helper()
   555  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Route", reflect.TypeOf((*MockAppModule)(nil).Route))
   556  }
   557  
   558  // ValidateGenesis mocks base method.
   559  func (m *MockAppModule) ValidateGenesis(arg0 codec.JSONCodec, arg1 client.TxEncodingConfig, arg2 json.RawMessage) error {
   560  	m.ctrl.T.Helper()
   561  	ret := m.ctrl.Call(m, "ValidateGenesis", arg0, arg1, arg2)
   562  	ret0, _ := ret[0].(error)
   563  	return ret0
   564  }
   565  
   566  // ValidateGenesis indicates an expected call of ValidateGenesis.
   567  func (mr *MockAppModuleMockRecorder) ValidateGenesis(arg0, arg1, arg2 interface{}) *gomock.Call {
   568  	mr.mock.ctrl.T.Helper()
   569  	return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ValidateGenesis", reflect.TypeOf((*MockAppModule)(nil).ValidateGenesis), arg0, arg1, arg2)
   570  }