github.com/koko1123/flow-go-1@v0.29.6/module/mock/receipt_validator.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 // ReceiptValidator is an autogenerated mock type for the ReceiptValidator type 11 type ReceiptValidator struct { 12 mock.Mock 13 } 14 15 // Validate provides a mock function with given fields: receipts 16 func (_m *ReceiptValidator) Validate(receipts *flow.ExecutionReceipt) error { 17 ret := _m.Called(receipts) 18 19 var r0 error 20 if rf, ok := ret.Get(0).(func(*flow.ExecutionReceipt) error); ok { 21 r0 = rf(receipts) 22 } else { 23 r0 = ret.Error(0) 24 } 25 26 return r0 27 } 28 29 // ValidatePayload provides a mock function with given fields: candidate 30 func (_m *ReceiptValidator) ValidatePayload(candidate *flow.Block) error { 31 ret := _m.Called(candidate) 32 33 var r0 error 34 if rf, ok := ret.Get(0).(func(*flow.Block) error); ok { 35 r0 = rf(candidate) 36 } else { 37 r0 = ret.Error(0) 38 } 39 40 return r0 41 } 42 43 type mockConstructorTestingTNewReceiptValidator interface { 44 mock.TestingT 45 Cleanup(func()) 46 } 47 48 // NewReceiptValidator creates a new instance of ReceiptValidator. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 49 func NewReceiptValidator(t mockConstructorTestingTNewReceiptValidator) *ReceiptValidator { 50 mock := &ReceiptValidator{} 51 mock.Mock.Test(t) 52 53 t.Cleanup(func() { mock.AssertExpectations(t) }) 54 55 return mock 56 }