github.com/koko1123/flow-go-1@v0.29.6/consensus/hotstuff/mocks/vote_consumer.go (about) 1 // Code generated by mockery v2.13.1. DO NOT EDIT. 2 3 package mocks 4 5 import ( 6 model "github.com/koko1123/flow-go-1/consensus/hotstuff/model" 7 mock "github.com/stretchr/testify/mock" 8 ) 9 10 // VoteConsumer is an autogenerated mock type for the VoteConsumer type 11 type VoteConsumer struct { 12 mock.Mock 13 } 14 15 // Execute provides a mock function with given fields: vote 16 func (_m *VoteConsumer) Execute(vote *model.Vote) { 17 _m.Called(vote) 18 } 19 20 type mockConstructorTestingTNewVoteConsumer interface { 21 mock.TestingT 22 Cleanup(func()) 23 } 24 25 // NewVoteConsumer creates a new instance of VoteConsumer. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 26 func NewVoteConsumer(t mockConstructorTestingTNewVoteConsumer) *VoteConsumer { 27 mock := &VoteConsumer{} 28 mock.Mock.Test(t) 29 30 t.Cleanup(func() { mock.AssertExpectations(t) }) 31 32 return mock 33 }