github.com/koko1123/flow-go-1@v0.29.6/module/mempool/mock/block_filter.go (about)

     1  // Code generated by mockery v2.13.1. DO NOT EDIT.
     2  
     3  package mempool
     4  
     5  import (
     6  	flow "github.com/koko1123/flow-go-1/model/flow"
     7  
     8  	mock "github.com/stretchr/testify/mock"
     9  )
    10  
    11  // BlockFilter is an autogenerated mock type for the BlockFilter type
    12  type BlockFilter struct {
    13  	mock.Mock
    14  }
    15  
    16  // Execute provides a mock function with given fields: header
    17  func (_m *BlockFilter) Execute(header *flow.Header) bool {
    18  	ret := _m.Called(header)
    19  
    20  	var r0 bool
    21  	if rf, ok := ret.Get(0).(func(*flow.Header) bool); ok {
    22  		r0 = rf(header)
    23  	} else {
    24  		r0 = ret.Get(0).(bool)
    25  	}
    26  
    27  	return r0
    28  }
    29  
    30  type mockConstructorTestingTNewBlockFilter interface {
    31  	mock.TestingT
    32  	Cleanup(func())
    33  }
    34  
    35  // NewBlockFilter creates a new instance of BlockFilter. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    36  func NewBlockFilter(t mockConstructorTestingTNewBlockFilter) *BlockFilter {
    37  	mock := &BlockFilter{}
    38  	mock.Mock.Test(t)
    39  
    40  	t.Cleanup(func() { mock.AssertExpectations(t) })
    41  
    42  	return mock
    43  }