github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/module/mempool/mock/chunk_data_packs.go (about) 1 // Code generated by mockery v2.21.4. DO NOT EDIT. 2 3 package mempool 4 5 import ( 6 flow "github.com/onflow/flow-go/model/flow" 7 8 mock "github.com/stretchr/testify/mock" 9 ) 10 11 // ChunkDataPacks is an autogenerated mock type for the ChunkDataPacks type 12 type ChunkDataPacks struct { 13 mock.Mock 14 } 15 16 // Add provides a mock function with given fields: cdp 17 func (_m *ChunkDataPacks) Add(cdp *flow.ChunkDataPack) bool { 18 ret := _m.Called(cdp) 19 20 var r0 bool 21 if rf, ok := ret.Get(0).(func(*flow.ChunkDataPack) bool); ok { 22 r0 = rf(cdp) 23 } else { 24 r0 = ret.Get(0).(bool) 25 } 26 27 return r0 28 } 29 30 // All provides a mock function with given fields: 31 func (_m *ChunkDataPacks) All() []*flow.ChunkDataPack { 32 ret := _m.Called() 33 34 var r0 []*flow.ChunkDataPack 35 if rf, ok := ret.Get(0).(func() []*flow.ChunkDataPack); ok { 36 r0 = rf() 37 } else { 38 if ret.Get(0) != nil { 39 r0 = ret.Get(0).([]*flow.ChunkDataPack) 40 } 41 } 42 43 return r0 44 } 45 46 // ByChunkID provides a mock function with given fields: chunkID 47 func (_m *ChunkDataPacks) ByChunkID(chunkID flow.Identifier) (*flow.ChunkDataPack, bool) { 48 ret := _m.Called(chunkID) 49 50 var r0 *flow.ChunkDataPack 51 var r1 bool 52 if rf, ok := ret.Get(0).(func(flow.Identifier) (*flow.ChunkDataPack, bool)); ok { 53 return rf(chunkID) 54 } 55 if rf, ok := ret.Get(0).(func(flow.Identifier) *flow.ChunkDataPack); ok { 56 r0 = rf(chunkID) 57 } else { 58 if ret.Get(0) != nil { 59 r0 = ret.Get(0).(*flow.ChunkDataPack) 60 } 61 } 62 63 if rf, ok := ret.Get(1).(func(flow.Identifier) bool); ok { 64 r1 = rf(chunkID) 65 } else { 66 r1 = ret.Get(1).(bool) 67 } 68 69 return r0, r1 70 } 71 72 // Has provides a mock function with given fields: chunkID 73 func (_m *ChunkDataPacks) Has(chunkID flow.Identifier) bool { 74 ret := _m.Called(chunkID) 75 76 var r0 bool 77 if rf, ok := ret.Get(0).(func(flow.Identifier) bool); ok { 78 r0 = rf(chunkID) 79 } else { 80 r0 = ret.Get(0).(bool) 81 } 82 83 return r0 84 } 85 86 // Remove provides a mock function with given fields: chunkID 87 func (_m *ChunkDataPacks) Remove(chunkID flow.Identifier) bool { 88 ret := _m.Called(chunkID) 89 90 var r0 bool 91 if rf, ok := ret.Get(0).(func(flow.Identifier) bool); ok { 92 r0 = rf(chunkID) 93 } else { 94 r0 = ret.Get(0).(bool) 95 } 96 97 return r0 98 } 99 100 // Size provides a mock function with given fields: 101 func (_m *ChunkDataPacks) Size() uint { 102 ret := _m.Called() 103 104 var r0 uint 105 if rf, ok := ret.Get(0).(func() uint); ok { 106 r0 = rf() 107 } else { 108 r0 = ret.Get(0).(uint) 109 } 110 111 return r0 112 } 113 114 type mockConstructorTestingTNewChunkDataPacks interface { 115 mock.TestingT 116 Cleanup(func()) 117 } 118 119 // NewChunkDataPacks creates a new instance of ChunkDataPacks. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 120 func NewChunkDataPacks(t mockConstructorTestingTNewChunkDataPacks) *ChunkDataPacks { 121 mock := &ChunkDataPacks{} 122 mock.Mock.Test(t) 123 124 t.Cleanup(func() { mock.AssertExpectations(t) }) 125 126 return mock 127 }