github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/storage/mock/version_beacons.go (about)

     1  // Code generated by mockery v2.21.4. DO NOT EDIT.
     2  
     3  package mock
     4  
     5  import (
     6  	flow "github.com/onflow/flow-go/model/flow"
     7  	mock "github.com/stretchr/testify/mock"
     8  )
     9  
    10  // VersionBeacons is an autogenerated mock type for the VersionBeacons type
    11  type VersionBeacons struct {
    12  	mock.Mock
    13  }
    14  
    15  // Highest provides a mock function with given fields: belowOrEqualTo
    16  func (_m *VersionBeacons) Highest(belowOrEqualTo uint64) (*flow.SealedVersionBeacon, error) {
    17  	ret := _m.Called(belowOrEqualTo)
    18  
    19  	var r0 *flow.SealedVersionBeacon
    20  	var r1 error
    21  	if rf, ok := ret.Get(0).(func(uint64) (*flow.SealedVersionBeacon, error)); ok {
    22  		return rf(belowOrEqualTo)
    23  	}
    24  	if rf, ok := ret.Get(0).(func(uint64) *flow.SealedVersionBeacon); ok {
    25  		r0 = rf(belowOrEqualTo)
    26  	} else {
    27  		if ret.Get(0) != nil {
    28  			r0 = ret.Get(0).(*flow.SealedVersionBeacon)
    29  		}
    30  	}
    31  
    32  	if rf, ok := ret.Get(1).(func(uint64) error); ok {
    33  		r1 = rf(belowOrEqualTo)
    34  	} else {
    35  		r1 = ret.Error(1)
    36  	}
    37  
    38  	return r0, r1
    39  }
    40  
    41  type mockConstructorTestingTNewVersionBeacons interface {
    42  	mock.TestingT
    43  	Cleanup(func())
    44  }
    45  
    46  // NewVersionBeacons creates a new instance of VersionBeacons. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    47  func NewVersionBeacons(t mockConstructorTestingTNewVersionBeacons) *VersionBeacons {
    48  	mock := &VersionBeacons{}
    49  	mock.Mock.Test(t)
    50  
    51  	t.Cleanup(func() { mock.AssertExpectations(t) })
    52  
    53  	return mock
    54  }