2024-03-11 12:16:45 +02:00
// Code generated by mockery v2.42.0. DO NOT EDIT.
2019-01-23 10:15:47 +02:00
package labeler
2020-04-21 22:03:37 +03:00
import (
context "context"
grpc "google.golang.org/grpc"
mock "github.com/stretchr/testify/mock"
)
2019-01-23 10:15:47 +02:00
// MockLabelerClient is an autogenerated mock type for the LabelerClient type
type MockLabelerClient struct {
mock . Mock
}
// SetLabels provides a mock function with given fields: ctx, in, opts
func ( _m * MockLabelerClient ) SetLabels ( ctx context . Context , in * SetLabelsRequest , opts ... grpc . CallOption ) ( * SetLabelsReply , error ) {
_va := make ( [ ] interface { } , len ( opts ) )
for _i := range opts {
_va [ _i ] = opts [ _i ]
}
var _ca [ ] interface { }
_ca = append ( _ca , ctx , in )
_ca = append ( _ca , _va ... )
ret := _m . Called ( _ca ... )
2024-03-11 12:16:45 +02:00
if len ( ret ) == 0 {
panic ( "no return value specified for SetLabels" )
}
2019-01-23 10:15:47 +02:00
var r0 * SetLabelsReply
2023-03-10 23:47:35 +02:00
var r1 error
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * SetLabelsRequest , ... grpc . CallOption ) ( * SetLabelsReply , error ) ) ; ok {
return rf ( ctx , in , opts ... )
}
2019-01-23 10:15:47 +02:00
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context , * SetLabelsRequest , ... grpc . CallOption ) * SetLabelsReply ) ; ok {
r0 = rf ( ctx , in , opts ... )
} else {
if ret . Get ( 0 ) != nil {
r0 = ret . Get ( 0 ) . ( * SetLabelsReply )
}
}
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context , * SetLabelsRequest , ... grpc . CallOption ) error ) ; ok {
r1 = rf ( ctx , in , opts ... )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
2022-06-15 12:20:49 +03:00
2023-07-27 12:05:23 +03:00
// NewMockLabelerClient creates a new instance of MockLabelerClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewMockLabelerClient ( t interface {
2022-06-15 12:20:49 +03:00
mock . TestingT
Cleanup ( func ( ) )
2023-07-27 12:05:23 +03:00
} ) * MockLabelerClient {
2022-06-15 12:20:49 +03:00
mock := & MockLabelerClient { }
mock . Mock . Test ( t )
t . Cleanup ( func ( ) { mock . AssertExpectations ( t ) } )
return mock
}