github.com/koko1123/flow-go-1@v0.29.6/storage/mock/cluster_payloads.go (about)

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