go_study/fabric-main/orderer/consensus/smartbft/mocks/sequencer.go

40 lines
892 B
Go

// Code generated by mockery v2.14.1. DO NOT EDIT.
package mocks
import mock "github.com/stretchr/testify/mock"
// Sequencer is an autogenerated mock type for the Sequencer type
type Sequencer struct {
mock.Mock
}
// Sequence provides a mock function with given fields:
func (_m *Sequencer) Sequence() uint64 {
ret := _m.Called()
var r0 uint64
if rf, ok := ret.Get(0).(func() uint64); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(uint64)
}
return r0
}
type mockConstructorTestingTNewSequencer interface {
mock.TestingT
Cleanup(func())
}
// NewSequencer creates a new instance of Sequencer. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewSequencer(t mockConstructorTestingTNewSequencer) *Sequencer {
mock := &Sequencer{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}