github.com/koko1123/flow-go-1@v0.29.6/storage/mock/guarantees.go (about) 1 // Code generated by mockery v2.13.1. DO NOT EDIT. 2 3 package mock 4 5 import ( 6 flow "github.com/koko1123/flow-go-1/model/flow" 7 mock "github.com/stretchr/testify/mock" 8 ) 9 10 // Guarantees is an autogenerated mock type for the Guarantees type 11 type Guarantees struct { 12 mock.Mock 13 } 14 15 // ByCollectionID provides a mock function with given fields: collID 16 func (_m *Guarantees) ByCollectionID(collID flow.Identifier) (*flow.CollectionGuarantee, error) { 17 ret := _m.Called(collID) 18 19 var r0 *flow.CollectionGuarantee 20 if rf, ok := ret.Get(0).(func(flow.Identifier) *flow.CollectionGuarantee); ok { 21 r0 = rf(collID) 22 } else { 23 if ret.Get(0) != nil { 24 r0 = ret.Get(0).(*flow.CollectionGuarantee) 25 } 26 } 27 28 var r1 error 29 if rf, ok := ret.Get(1).(func(flow.Identifier) error); ok { 30 r1 = rf(collID) 31 } else { 32 r1 = ret.Error(1) 33 } 34 35 return r0, r1 36 } 37 38 // Store provides a mock function with given fields: guarantee 39 func (_m *Guarantees) Store(guarantee *flow.CollectionGuarantee) error { 40 ret := _m.Called(guarantee) 41 42 var r0 error 43 if rf, ok := ret.Get(0).(func(*flow.CollectionGuarantee) error); ok { 44 r0 = rf(guarantee) 45 } else { 46 r0 = ret.Error(0) 47 } 48 49 return r0 50 } 51 52 type mockConstructorTestingTNewGuarantees interface { 53 mock.TestingT 54 Cleanup(func()) 55 } 56 57 // NewGuarantees creates a new instance of Guarantees. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 58 func NewGuarantees(t mockConstructorTestingTNewGuarantees) *Guarantees { 59 mock := &Guarantees{} 60 mock.Mock.Test(t) 61 62 t.Cleanup(func() { mock.AssertExpectations(t) }) 63 64 return mock 65 }