github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/tenantfetchersvc/resync/automock/event_api_client.go (about)

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