github.com/kyma-project/kyma-environment-broker@v0.0.1/internal/runtimeoverrides/automock/input_appender.go (about)

     1  // Code generated by mockery v2.3.0. DO NOT EDIT.
     2  
     3  package automock
     4  
     5  import (
     6  	internal "github.com/kyma-project/kyma-environment-broker/internal"
     7  	gqlschema "github.com/kyma-project/control-plane/components/provisioner/pkg/gqlschema"
     8  
     9  	mock "github.com/stretchr/testify/mock"
    10  )
    11  
    12  // InputAppender is an autogenerated mock type for the InputAppender type
    13  type InputAppender struct {
    14  	mock.Mock
    15  }
    16  
    17  // AppendGlobalOverrides provides a mock function with given fields: overrides
    18  func (_m *InputAppender) AppendGlobalOverrides(overrides []*gqlschema.ConfigEntryInput) internal.ProvisionerInputCreator {
    19  	ret := _m.Called(overrides)
    20  
    21  	var r0 internal.ProvisionerInputCreator
    22  	if rf, ok := ret.Get(0).(func([]*gqlschema.ConfigEntryInput) internal.ProvisionerInputCreator); ok {
    23  		r0 = rf(overrides)
    24  	} else {
    25  		if ret.Get(0) != nil {
    26  			r0 = ret.Get(0).(internal.ProvisionerInputCreator)
    27  		}
    28  	}
    29  
    30  	return r0
    31  }
    32  
    33  // AppendOverrides provides a mock function with given fields: component, overrides
    34  func (_m *InputAppender) AppendOverrides(component string, overrides []*gqlschema.ConfigEntryInput) internal.ProvisionerInputCreator {
    35  	ret := _m.Called(component, overrides)
    36  
    37  	var r0 internal.ProvisionerInputCreator
    38  	if rf, ok := ret.Get(0).(func(string, []*gqlschema.ConfigEntryInput) internal.ProvisionerInputCreator); ok {
    39  		r0 = rf(component, overrides)
    40  	} else {
    41  		if ret.Get(0) != nil {
    42  			r0 = ret.Get(0).(internal.ProvisionerInputCreator)
    43  		}
    44  	}
    45  
    46  	return r0
    47  }