github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/domain/runtime/automock/o_auth20_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/pkg/model"
     9  	mock "github.com/stretchr/testify/mock"
    10  )
    11  
    12  // OAuth20Service is an autogenerated mock type for the OAuth20Service type
    13  type OAuth20Service struct {
    14  	mock.Mock
    15  }
    16  
    17  // DeleteMultipleClientCredentials provides a mock function with given fields: ctx, auths
    18  func (_m *OAuth20Service) DeleteMultipleClientCredentials(ctx context.Context, auths []model.SystemAuth) error {
    19  	ret := _m.Called(ctx, auths)
    20  
    21  	var r0 error
    22  	if rf, ok := ret.Get(0).(func(context.Context, []model.SystemAuth) error); ok {
    23  		r0 = rf(ctx, auths)
    24  	} else {
    25  		r0 = ret.Error(0)
    26  	}
    27  
    28  	return r0
    29  }
    30  
    31  type mockConstructorTestingTNewOAuth20Service interface {
    32  	mock.TestingT
    33  	Cleanup(func())
    34  }
    35  
    36  // NewOAuth20Service creates a new instance of OAuth20Service. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    37  func NewOAuth20Service(t mockConstructorTestingTNewOAuth20Service) *OAuth20Service {
    38  	mock := &OAuth20Service{}
    39  	mock.Mock.Test(t)
    40  
    41  	t.Cleanup(func() { mock.AssertExpectations(t) })
    42  
    43  	return mock
    44  }