github.com/koko1123/flow-go-1@v0.29.6/storage/mock/cluster_blocks.go (about) 1 // Code generated by mockery v2.13.1. DO NOT EDIT. 2 3 package mock 4 5 import ( 6 cluster "github.com/koko1123/flow-go-1/model/cluster" 7 flow "github.com/koko1123/flow-go-1/model/flow" 8 9 mock "github.com/stretchr/testify/mock" 10 ) 11 12 // ClusterBlocks is an autogenerated mock type for the ClusterBlocks type 13 type ClusterBlocks struct { 14 mock.Mock 15 } 16 17 // ByHeight provides a mock function with given fields: height 18 func (_m *ClusterBlocks) ByHeight(height uint64) (*cluster.Block, error) { 19 ret := _m.Called(height) 20 21 var r0 *cluster.Block 22 if rf, ok := ret.Get(0).(func(uint64) *cluster.Block); ok { 23 r0 = rf(height) 24 } else { 25 if ret.Get(0) != nil { 26 r0 = ret.Get(0).(*cluster.Block) 27 } 28 } 29 30 var r1 error 31 if rf, ok := ret.Get(1).(func(uint64) error); ok { 32 r1 = rf(height) 33 } else { 34 r1 = ret.Error(1) 35 } 36 37 return r0, r1 38 } 39 40 // ByID provides a mock function with given fields: blockID 41 func (_m *ClusterBlocks) ByID(blockID flow.Identifier) (*cluster.Block, error) { 42 ret := _m.Called(blockID) 43 44 var r0 *cluster.Block 45 if rf, ok := ret.Get(0).(func(flow.Identifier) *cluster.Block); ok { 46 r0 = rf(blockID) 47 } else { 48 if ret.Get(0) != nil { 49 r0 = ret.Get(0).(*cluster.Block) 50 } 51 } 52 53 var r1 error 54 if rf, ok := ret.Get(1).(func(flow.Identifier) error); ok { 55 r1 = rf(blockID) 56 } else { 57 r1 = ret.Error(1) 58 } 59 60 return r0, r1 61 } 62 63 // Store provides a mock function with given fields: block 64 func (_m *ClusterBlocks) Store(block *cluster.Block) error { 65 ret := _m.Called(block) 66 67 var r0 error 68 if rf, ok := ret.Get(0).(func(*cluster.Block) error); ok { 69 r0 = rf(block) 70 } else { 71 r0 = ret.Error(0) 72 } 73 74 return r0 75 } 76 77 type mockConstructorTestingTNewClusterBlocks interface { 78 mock.TestingT 79 Cleanup(func()) 80 } 81 82 // NewClusterBlocks creates a new instance of ClusterBlocks. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 83 func NewClusterBlocks(t mockConstructorTestingTNewClusterBlocks) *ClusterBlocks { 84 mock := &ClusterBlocks{} 85 mock.Mock.Test(t) 86 87 t.Cleanup(func() { mock.AssertExpectations(t) }) 88 89 return mock 90 }