github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/systemfetcher/automock/systems_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  // SystemsService is an autogenerated mock type for the systemsService type
    13  type SystemsService struct {
    14  	mock.Mock
    15  }
    16  
    17  // GetBySystemNumber provides a mock function with given fields: ctx, systemNumber
    18  func (_m *SystemsService) GetBySystemNumber(ctx context.Context, systemNumber string) (*model.Application, error) {
    19  	ret := _m.Called(ctx, systemNumber)
    20  
    21  	var r0 *model.Application
    22  	if rf, ok := ret.Get(0).(func(context.Context, string) *model.Application); ok {
    23  		r0 = rf(ctx, systemNumber)
    24  	} else {
    25  		if ret.Get(0) != nil {
    26  			r0 = ret.Get(0).(*model.Application)
    27  		}
    28  	}
    29  
    30  	var r1 error
    31  	if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
    32  		r1 = rf(ctx, systemNumber)
    33  	} else {
    34  		r1 = ret.Error(1)
    35  	}
    36  
    37  	return r0, r1
    38  }
    39  
    40  // TrustedUpsert provides a mock function with given fields: ctx, in
    41  func (_m *SystemsService) TrustedUpsert(ctx context.Context, in model.ApplicationRegisterInput) error {
    42  	ret := _m.Called(ctx, in)
    43  
    44  	var r0 error
    45  	if rf, ok := ret.Get(0).(func(context.Context, model.ApplicationRegisterInput) error); ok {
    46  		r0 = rf(ctx, in)
    47  	} else {
    48  		r0 = ret.Error(0)
    49  	}
    50  
    51  	return r0
    52  }
    53  
    54  // TrustedUpsertFromTemplate provides a mock function with given fields: ctx, in, appTemplateID
    55  func (_m *SystemsService) TrustedUpsertFromTemplate(ctx context.Context, in model.ApplicationRegisterInput, appTemplateID *string) error {
    56  	ret := _m.Called(ctx, in, appTemplateID)
    57  
    58  	var r0 error
    59  	if rf, ok := ret.Get(0).(func(context.Context, model.ApplicationRegisterInput, *string) error); ok {
    60  		r0 = rf(ctx, in, appTemplateID)
    61  	} else {
    62  		r0 = ret.Error(0)
    63  	}
    64  
    65  	return r0
    66  }
    67  
    68  type mockConstructorTestingTNewSystemsService interface {
    69  	mock.TestingT
    70  	Cleanup(func())
    71  }
    72  
    73  // NewSystemsService creates a new instance of SystemsService. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    74  func NewSystemsService(t mockConstructorTestingTNewSystemsService) *SystemsService {
    75  	mock := &SystemsService{}
    76  	mock.Mock.Test(t)
    77  
    78  	t.Cleanup(func() { mock.AssertExpectations(t) })
    79  
    80  	return mock
    81  }