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

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