59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
// Code generated by mockery v2.14.0. DO NOT EDIT.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
context "context"
|
|
|
|
orderer "github.com/hyperledger/fabric-protos-go/orderer"
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// Dispatcher is an autogenerated mock type for the Dispatcher type
|
|
type Dispatcher struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// DispatchConsensus provides a mock function with given fields: ctx, request
|
|
func (_m *Dispatcher) DispatchConsensus(ctx context.Context, request *orderer.ConsensusRequest) error {
|
|
ret := _m.Called(ctx, request)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(context.Context, *orderer.ConsensusRequest) error); ok {
|
|
r0 = rf(ctx, request)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// DispatchSubmit provides a mock function with given fields: ctx, request
|
|
func (_m *Dispatcher) DispatchSubmit(ctx context.Context, request *orderer.SubmitRequest) error {
|
|
ret := _m.Called(ctx, request)
|
|
|
|
var r0 error
|
|
if rf, ok := ret.Get(0).(func(context.Context, *orderer.SubmitRequest) error); ok {
|
|
r0 = rf(ctx, request)
|
|
} else {
|
|
r0 = ret.Error(0)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
type mockConstructorTestingTNewDispatcher interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}
|
|
|
|
// NewDispatcher creates a new instance of Dispatcher. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
|
|
func NewDispatcher(t mockConstructorTestingTNewDispatcher) *Dispatcher {
|
|
mock := &Dispatcher{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|