2023-02-07 19:02:31 +08:00
// Code generated by mockery v2.16.0. DO NOT EDIT.
package datacoord
import (
context "context"
mock "github.com/stretchr/testify/mock"
)
// NMockAllocator is an autogenerated mock type for the allocator type
type NMockAllocator struct {
mock . Mock
}
type NMockAllocator_Expecter struct {
mock * mock . Mock
}
func ( _m * NMockAllocator ) EXPECT ( ) * NMockAllocator_Expecter {
return & NMockAllocator_Expecter { mock : & _m . Mock }
}
// allocID provides a mock function with given fields: _a0
func ( _m * NMockAllocator ) allocID ( _a0 context . Context ) ( int64 , error ) {
ret := _m . Called ( _a0 )
var r0 int64
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context ) int64 ) ; ok {
r0 = rf ( _a0 )
} else {
r0 = ret . Get ( 0 ) . ( int64 )
}
var r1 error
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context ) error ) ; ok {
r1 = rf ( _a0 )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// NMockAllocator_allocID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'allocID'
type NMockAllocator_allocID_Call struct {
* mock . Call
}
// allocID is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - _a0 context.Context
2023-02-07 19:02:31 +08:00
func ( _e * NMockAllocator_Expecter ) allocID ( _a0 interface { } ) * NMockAllocator_allocID_Call {
return & NMockAllocator_allocID_Call { Call : _e . mock . On ( "allocID" , _a0 ) }
}
func ( _c * NMockAllocator_allocID_Call ) Run ( run func ( _a0 context . Context ) ) * NMockAllocator_allocID_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) )
} )
return _c
}
func ( _c * NMockAllocator_allocID_Call ) Return ( _a0 int64 , _a1 error ) * NMockAllocator_allocID_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
// allocTimestamp provides a mock function with given fields: _a0
func ( _m * NMockAllocator ) allocTimestamp ( _a0 context . Context ) ( uint64 , error ) {
ret := _m . Called ( _a0 )
var r0 uint64
if rf , ok := ret . Get ( 0 ) . ( func ( context . Context ) uint64 ) ; ok {
r0 = rf ( _a0 )
} else {
r0 = ret . Get ( 0 ) . ( uint64 )
}
var r1 error
if rf , ok := ret . Get ( 1 ) . ( func ( context . Context ) error ) ; ok {
r1 = rf ( _a0 )
} else {
r1 = ret . Error ( 1 )
}
return r0 , r1
}
// NMockAllocator_allocTimestamp_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'allocTimestamp'
type NMockAllocator_allocTimestamp_Call struct {
* mock . Call
}
// allocTimestamp is a helper method to define mock.On call
2023-02-26 11:31:49 +08:00
// - _a0 context.Context
2023-02-07 19:02:31 +08:00
func ( _e * NMockAllocator_Expecter ) allocTimestamp ( _a0 interface { } ) * NMockAllocator_allocTimestamp_Call {
return & NMockAllocator_allocTimestamp_Call { Call : _e . mock . On ( "allocTimestamp" , _a0 ) }
}
func ( _c * NMockAllocator_allocTimestamp_Call ) Run ( run func ( _a0 context . Context ) ) * NMockAllocator_allocTimestamp_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) )
} )
return _c
}
func ( _c * NMockAllocator_allocTimestamp_Call ) Return ( _a0 uint64 , _a1 error ) * NMockAllocator_allocTimestamp_Call {
_c . Call . Return ( _a0 , _a1 )
return _c
}
type mockConstructorTestingTNewNMockAllocator interface {
mock . TestingT
Cleanup ( func ( ) )
}
// NewNMockAllocator creates a new instance of NMockAllocator. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewNMockAllocator ( t mockConstructorTestingTNewNMockAllocator ) * NMockAllocator {
mock := & NMockAllocator { }
mock . Mock . Test ( t )
t . Cleanup ( func ( ) { mock . AssertExpectations ( t ) } )
return mock
}