make generate
This commit is contained in:
parent
0598aaff2d
commit
ed2ff2d6b0
1 changed files with 15 additions and 0 deletions
|
@ -103,6 +103,21 @@ func (mr *MockStoreMockRecorder) DeleteSession(arg0 interface{}) *gomock.Call {
|
||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteSession", reflect.TypeOf((*MockStore)(nil).DeleteSession), arg0)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteSession", reflect.TypeOf((*MockStore)(nil).DeleteSession), arg0)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetActiveUserCount mocks base method
|
||||||
|
func (m *MockStore) GetActiveUserCount() (int, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "GetActiveUserCount")
|
||||||
|
ret0, _ := ret[0].(int)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetActiveUserCount indicates an expected call of GetActiveUserCount
|
||||||
|
func (mr *MockStoreMockRecorder) GetActiveUserCount() *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetActiveUserCount", reflect.TypeOf((*MockStore)(nil).GetActiveUserCount))
|
||||||
|
}
|
||||||
|
|
||||||
// GetAllBlocks mocks base method
|
// GetAllBlocks mocks base method
|
||||||
func (m *MockStore) GetAllBlocks() ([]model.Block, error) {
|
func (m *MockStore) GetAllBlocks() ([]model.Block, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
|
|
Loading…
Reference in a new issue