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

     1  // Code generated by mockery. DO NOT EDIT.
     2  
     3  package automock
     4  
     5  import (
     6  	graphql "github.com/kyma-incubator/compass/components/director/pkg/graphql"
     7  	mock "github.com/stretchr/testify/mock"
     8  
     9  	model "github.com/kyma-incubator/compass/components/director/internal/model"
    10  )
    11  
    12  // WebhookConverter is an autogenerated mock type for the WebhookConverter type
    13  type WebhookConverter struct {
    14  	mock.Mock
    15  }
    16  
    17  // InputFromGraphQL provides a mock function with given fields: in
    18  func (_m *WebhookConverter) InputFromGraphQL(in *graphql.WebhookInput) (*model.WebhookInput, error) {
    19  	ret := _m.Called(in)
    20  
    21  	var r0 *model.WebhookInput
    22  	if rf, ok := ret.Get(0).(func(*graphql.WebhookInput) *model.WebhookInput); ok {
    23  		r0 = rf(in)
    24  	} else {
    25  		if ret.Get(0) != nil {
    26  			r0 = ret.Get(0).(*model.WebhookInput)
    27  		}
    28  	}
    29  
    30  	var r1 error
    31  	if rf, ok := ret.Get(1).(func(*graphql.WebhookInput) error); ok {
    32  		r1 = rf(in)
    33  	} else {
    34  		r1 = ret.Error(1)
    35  	}
    36  
    37  	return r0, r1
    38  }
    39  
    40  // MultipleInputFromGraphQL provides a mock function with given fields: in
    41  func (_m *WebhookConverter) MultipleInputFromGraphQL(in []*graphql.WebhookInput) ([]*model.WebhookInput, error) {
    42  	ret := _m.Called(in)
    43  
    44  	var r0 []*model.WebhookInput
    45  	if rf, ok := ret.Get(0).(func([]*graphql.WebhookInput) []*model.WebhookInput); ok {
    46  		r0 = rf(in)
    47  	} else {
    48  		if ret.Get(0) != nil {
    49  			r0 = ret.Get(0).([]*model.WebhookInput)
    50  		}
    51  	}
    52  
    53  	var r1 error
    54  	if rf, ok := ret.Get(1).(func([]*graphql.WebhookInput) error); ok {
    55  		r1 = rf(in)
    56  	} else {
    57  		r1 = ret.Error(1)
    58  	}
    59  
    60  	return r0, r1
    61  }
    62  
    63  // MultipleToGraphQL provides a mock function with given fields: in
    64  func (_m *WebhookConverter) MultipleToGraphQL(in []*model.Webhook) ([]*graphql.Webhook, error) {
    65  	ret := _m.Called(in)
    66  
    67  	var r0 []*graphql.Webhook
    68  	if rf, ok := ret.Get(0).(func([]*model.Webhook) []*graphql.Webhook); ok {
    69  		r0 = rf(in)
    70  	} else {
    71  		if ret.Get(0) != nil {
    72  			r0 = ret.Get(0).([]*graphql.Webhook)
    73  		}
    74  	}
    75  
    76  	var r1 error
    77  	if rf, ok := ret.Get(1).(func([]*model.Webhook) error); ok {
    78  		r1 = rf(in)
    79  	} else {
    80  		r1 = ret.Error(1)
    81  	}
    82  
    83  	return r0, r1
    84  }
    85  
    86  // ToGraphQL provides a mock function with given fields: in
    87  func (_m *WebhookConverter) ToGraphQL(in *model.Webhook) (*graphql.Webhook, error) {
    88  	ret := _m.Called(in)
    89  
    90  	var r0 *graphql.Webhook
    91  	if rf, ok := ret.Get(0).(func(*model.Webhook) *graphql.Webhook); ok {
    92  		r0 = rf(in)
    93  	} else {
    94  		if ret.Get(0) != nil {
    95  			r0 = ret.Get(0).(*graphql.Webhook)
    96  		}
    97  	}
    98  
    99  	var r1 error
   100  	if rf, ok := ret.Get(1).(func(*model.Webhook) error); ok {
   101  		r1 = rf(in)
   102  	} else {
   103  		r1 = ret.Error(1)
   104  	}
   105  
   106  	return r0, r1
   107  }
   108  
   109  type mockConstructorTestingTNewWebhookConverter interface {
   110  	mock.TestingT
   111  	Cleanup(func())
   112  }
   113  
   114  // NewWebhookConverter creates a new instance of WebhookConverter. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
   115  func NewWebhookConverter(t mockConstructorTestingTNewWebhookConverter) *WebhookConverter {
   116  	mock := &WebhookConverter{}
   117  	mock.Mock.Test(t)
   118  
   119  	t.Cleanup(func() { mock.AssertExpectations(t) })
   120  
   121  	return mock
   122  }