github.com/onflow/flow-go@v0.33.17/state/protocol/mock/cluster_id_update_consumer.go (about)

     1  // Code generated by mockery v2.21.4. DO NOT EDIT.
     2  
     3  package mock
     4  
     5  import (
     6  	mock "github.com/stretchr/testify/mock"
     7  
     8  	flow "github.com/onflow/flow-go/model/flow"
     9  )
    10  
    11  // ClusterIDUpdateConsumer is an autogenerated mock type for the ClusterIDUpdateConsumer type
    12  type ClusterIDUpdateConsumer struct {
    13  	mock.Mock
    14  }
    15  
    16  // ClusterIdsUpdated provides a mock function with given fields: _a0
    17  func (_m *ClusterIDUpdateConsumer) ActiveClustersChanged(_a0 flow.ChainIDList) {
    18  	_m.Called(_a0)
    19  }
    20  
    21  type mockConstructorTestingTNewClusterIDUpdateConsumer interface {
    22  	mock.TestingT
    23  	Cleanup(func())
    24  }
    25  
    26  // NewClusterIDUpdateConsumer creates a new instance of ClusterIDUpdateConsumer. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    27  func NewClusterIDUpdateConsumer(t mockConstructorTestingTNewClusterIDUpdateConsumer) *ClusterIDUpdateConsumer {
    28  	mock := &ClusterIDUpdateConsumer{}
    29  	mock.Mock.Test(t)
    30  
    31  	t.Cleanup(func() { mock.AssertExpectations(t) })
    32  
    33  	return mock
    34  }