github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/storage/mock/guarantees.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  // 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  	var r1 error
    21  	if rf, ok := ret.Get(0).(func(flow.Identifier) (*flow.CollectionGuarantee, error)); ok {
    22  		return rf(collID)
    23  	}
    24  	if rf, ok := ret.Get(0).(func(flow.Identifier) *flow.CollectionGuarantee); ok {
    25  		r0 = rf(collID)
    26  	} else {
    27  		if ret.Get(0) != nil {
    28  			r0 = ret.Get(0).(*flow.CollectionGuarantee)
    29  		}
    30  	}
    31  
    32  	if rf, ok := ret.Get(1).(func(flow.Identifier) error); ok {
    33  		r1 = rf(collID)
    34  	} else {
    35  		r1 = ret.Error(1)
    36  	}
    37  
    38  	return r0, r1
    39  }
    40  
    41  // Store provides a mock function with given fields: guarantee
    42  func (_m *Guarantees) Store(guarantee *flow.CollectionGuarantee) error {
    43  	ret := _m.Called(guarantee)
    44  
    45  	var r0 error
    46  	if rf, ok := ret.Get(0).(func(*flow.CollectionGuarantee) error); ok {
    47  		r0 = rf(guarantee)
    48  	} else {
    49  		r0 = ret.Error(0)
    50  	}
    51  
    52  	return r0
    53  }
    54  
    55  type mockConstructorTestingTNewGuarantees interface {
    56  	mock.TestingT
    57  	Cleanup(func())
    58  }
    59  
    60  // 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.
    61  func NewGuarantees(t mockConstructorTestingTNewGuarantees) *Guarantees {
    62  	mock := &Guarantees{}
    63  	mock.Mock.Test(t)
    64  
    65  	t.Cleanup(func() { mock.AssertExpectations(t) })
    66  
    67  	return mock
    68  }