74 lines
2.1 KiB
Go
74 lines
2.1 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/anytypeio/any-sync/commonspace/objectsync (interfaces: ActionQueue)
|
|
|
|
// Package mock_objectsync is a generated GoMock package.
|
|
package mock_objectsync
|
|
|
|
import (
|
|
reflect "reflect"
|
|
|
|
objectsync "github.com/anytypeio/any-sync/commonspace/objectsync"
|
|
gomock "github.com/golang/mock/gomock"
|
|
)
|
|
|
|
// MockActionQueue is a mock of ActionQueue interface.
|
|
type MockActionQueue struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockActionQueueMockRecorder
|
|
}
|
|
|
|
// MockActionQueueMockRecorder is the mock recorder for MockActionQueue.
|
|
type MockActionQueueMockRecorder struct {
|
|
mock *MockActionQueue
|
|
}
|
|
|
|
// NewMockActionQueue creates a new mock instance.
|
|
func NewMockActionQueue(ctrl *gomock.Controller) *MockActionQueue {
|
|
mock := &MockActionQueue{ctrl: ctrl}
|
|
mock.recorder = &MockActionQueueMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockActionQueue) EXPECT() *MockActionQueueMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// Close mocks base method.
|
|
func (m *MockActionQueue) Close() {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "Close")
|
|
}
|
|
|
|
// Close indicates an expected call of Close.
|
|
func (mr *MockActionQueueMockRecorder) Close() *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockActionQueue)(nil).Close))
|
|
}
|
|
|
|
// Run mocks base method.
|
|
func (m *MockActionQueue) Run() {
|
|
m.ctrl.T.Helper()
|
|
m.ctrl.Call(m, "Run")
|
|
}
|
|
|
|
// Run indicates an expected call of Run.
|
|
func (mr *MockActionQueueMockRecorder) Run() *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Run", reflect.TypeOf((*MockActionQueue)(nil).Run))
|
|
}
|
|
|
|
// Send mocks base method.
|
|
func (m *MockActionQueue) Send(arg0 objectsync.ActionFunc) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Send", arg0)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// Send indicates an expected call of Send.
|
|
func (mr *MockActionQueueMockRecorder) Send(arg0 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Send", reflect.TypeOf((*MockActionQueue)(nil).Send), arg0)
|
|
}
|