github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/domain/healthcheck/automock/health_check_converter.go (about)

     1  // Code generated by mockery. DO NOT EDIT.
     2  
     3  package automock
     4  
     5  import mock "github.com/stretchr/testify/mock"
     6  
     7  // HealthCheckConverter is an autogenerated mock type for the HealthCheckConverter type
     8  type HealthCheckConverter struct {
     9  	mock.Mock
    10  }
    11  
    12  type mockConstructorTestingTNewHealthCheckConverter interface {
    13  	mock.TestingT
    14  	Cleanup(func())
    15  }
    16  
    17  // NewHealthCheckConverter creates a new instance of HealthCheckConverter. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    18  func NewHealthCheckConverter(t mockConstructorTestingTNewHealthCheckConverter) *HealthCheckConverter {
    19  	mock := &HealthCheckConverter{}
    20  	mock.Mock.Test(t)
    21  
    22  	t.Cleanup(func() { mock.AssertExpectations(t) })
    23  
    24  	return mock
    25  }