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

     1  // Code generated by mockery. DO NOT EDIT.
     2  
     3  package automock
     4  
     5  import (
     6  	context "context"
     7  
     8  	model "github.com/kyma-incubator/compass/components/director/internal/model"
     9  	mock "github.com/stretchr/testify/mock"
    10  )
    11  
    12  // FetchRequestService is an autogenerated mock type for the FetchRequestService type
    13  type FetchRequestService struct {
    14  	mock.Mock
    15  }
    16  
    17  // HandleSpec provides a mock function with given fields: ctx, fr
    18  func (_m *FetchRequestService) HandleSpec(ctx context.Context, fr *model.FetchRequest) *string {
    19  	ret := _m.Called(ctx, fr)
    20  
    21  	var r0 *string
    22  	if rf, ok := ret.Get(0).(func(context.Context, *model.FetchRequest) *string); ok {
    23  		r0 = rf(ctx, fr)
    24  	} else {
    25  		if ret.Get(0) != nil {
    26  			r0 = ret.Get(0).(*string)
    27  		}
    28  	}
    29  
    30  	return r0
    31  }
    32  
    33  type mockConstructorTestingTNewFetchRequestService interface {
    34  	mock.TestingT
    35  	Cleanup(func())
    36  }
    37  
    38  // NewFetchRequestService creates a new instance of FetchRequestService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    39  func NewFetchRequestService(t mockConstructorTestingTNewFetchRequestService) *FetchRequestService {
    40  	mock := &FetchRequestService{}
    41  	mock.Mock.Test(t)
    42  
    43  	t.Cleanup(func() { mock.AssertExpectations(t) })
    44  
    45  	return mock
    46  }