2022-09-15 10:48:32 +00:00
// Code generated by mockery v2.14.0. DO NOT EDIT.
package task
2022-09-21 06:42:51 +00:00
import (
context "context"
mock "github.com/stretchr/testify/mock"
)
2022-09-15 10:48:32 +00:00
// MockScheduler is an autogenerated mock type for the Scheduler type
type MockScheduler struct {
mock . Mock
}
type MockScheduler_Expecter struct {
mock * mock . Mock
}
func ( _m * MockScheduler ) EXPECT ( ) * MockScheduler_Expecter {
return & MockScheduler_Expecter { mock : & _m . Mock }
}
// Add provides a mock function with given fields: task
func ( _m * MockScheduler ) Add ( task Task ) error {
ret := _m . Called ( task )
var r0 error
if rf , ok := ret . Get ( 0 ) . ( func ( Task ) error ) ; ok {
r0 = rf ( task )
} else {
r0 = ret . Error ( 0 )
}
return r0
}
// MockScheduler_Add_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Add'
type MockScheduler_Add_Call struct {
* mock . Call
}
// Add is a helper method to define mock.On call
// - task Task
func ( _e * MockScheduler_Expecter ) Add ( task interface { } ) * MockScheduler_Add_Call {
return & MockScheduler_Add_Call { Call : _e . mock . On ( "Add" , task ) }
}
func ( _c * MockScheduler_Add_Call ) Run ( run func ( task Task ) ) * MockScheduler_Add_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( Task ) )
} )
return _c
}
func ( _c * MockScheduler_Add_Call ) Return ( _a0 error ) * MockScheduler_Add_Call {
_c . Call . Return ( _a0 )
return _c
}
// Dispatch provides a mock function with given fields: node
func ( _m * MockScheduler ) Dispatch ( node int64 ) {
_m . Called ( node )
}
// MockScheduler_Dispatch_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Dispatch'
type MockScheduler_Dispatch_Call struct {
* mock . Call
}
// Dispatch is a helper method to define mock.On call
// - node int64
func ( _e * MockScheduler_Expecter ) Dispatch ( node interface { } ) * MockScheduler_Dispatch_Call {
return & MockScheduler_Dispatch_Call { Call : _e . mock . On ( "Dispatch" , node ) }
}
func ( _c * MockScheduler_Dispatch_Call ) Run ( run func ( node int64 ) ) * MockScheduler_Dispatch_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( int64 ) )
} )
return _c
}
func ( _c * MockScheduler_Dispatch_Call ) Return ( ) * MockScheduler_Dispatch_Call {
_c . Call . Return ( )
return _c
}
// GetNodeChannelDelta provides a mock function with given fields: nodeID
func ( _m * MockScheduler ) GetNodeChannelDelta ( nodeID int64 ) int {
ret := _m . Called ( nodeID )
var r0 int
if rf , ok := ret . Get ( 0 ) . ( func ( int64 ) int ) ; ok {
r0 = rf ( nodeID )
} else {
r0 = ret . Get ( 0 ) . ( int )
}
return r0
}
// MockScheduler_GetNodeChannelDelta_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetNodeChannelDelta'
type MockScheduler_GetNodeChannelDelta_Call struct {
* mock . Call
}
// GetNodeChannelDelta is a helper method to define mock.On call
// - nodeID int64
func ( _e * MockScheduler_Expecter ) GetNodeChannelDelta ( nodeID interface { } ) * MockScheduler_GetNodeChannelDelta_Call {
return & MockScheduler_GetNodeChannelDelta_Call { Call : _e . mock . On ( "GetNodeChannelDelta" , nodeID ) }
}
func ( _c * MockScheduler_GetNodeChannelDelta_Call ) Run ( run func ( nodeID int64 ) ) * MockScheduler_GetNodeChannelDelta_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( int64 ) )
} )
return _c
}
func ( _c * MockScheduler_GetNodeChannelDelta_Call ) Return ( _a0 int ) * MockScheduler_GetNodeChannelDelta_Call {
_c . Call . Return ( _a0 )
return _c
}
// GetNodeSegmentDelta provides a mock function with given fields: nodeID
func ( _m * MockScheduler ) GetNodeSegmentDelta ( nodeID int64 ) int {
ret := _m . Called ( nodeID )
var r0 int
if rf , ok := ret . Get ( 0 ) . ( func ( int64 ) int ) ; ok {
r0 = rf ( nodeID )
} else {
r0 = ret . Get ( 0 ) . ( int )
}
return r0
}
// MockScheduler_GetNodeSegmentDelta_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetNodeSegmentDelta'
type MockScheduler_GetNodeSegmentDelta_Call struct {
* mock . Call
}
// GetNodeSegmentDelta is a helper method to define mock.On call
// - nodeID int64
func ( _e * MockScheduler_Expecter ) GetNodeSegmentDelta ( nodeID interface { } ) * MockScheduler_GetNodeSegmentDelta_Call {
return & MockScheduler_GetNodeSegmentDelta_Call { Call : _e . mock . On ( "GetNodeSegmentDelta" , nodeID ) }
}
func ( _c * MockScheduler_GetNodeSegmentDelta_Call ) Run ( run func ( nodeID int64 ) ) * MockScheduler_GetNodeSegmentDelta_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( int64 ) )
} )
return _c
}
func ( _c * MockScheduler_GetNodeSegmentDelta_Call ) Return ( _a0 int ) * MockScheduler_GetNodeSegmentDelta_Call {
_c . Call . Return ( _a0 )
return _c
}
// RemoveByNode provides a mock function with given fields: node
func ( _m * MockScheduler ) RemoveByNode ( node int64 ) {
_m . Called ( node )
}
// MockScheduler_RemoveByNode_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'RemoveByNode'
type MockScheduler_RemoveByNode_Call struct {
* mock . Call
}
// RemoveByNode is a helper method to define mock.On call
// - node int64
func ( _e * MockScheduler_Expecter ) RemoveByNode ( node interface { } ) * MockScheduler_RemoveByNode_Call {
return & MockScheduler_RemoveByNode_Call { Call : _e . mock . On ( "RemoveByNode" , node ) }
}
func ( _c * MockScheduler_RemoveByNode_Call ) Run ( run func ( node int64 ) ) * MockScheduler_RemoveByNode_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( int64 ) )
} )
return _c
}
func ( _c * MockScheduler_RemoveByNode_Call ) Return ( ) * MockScheduler_RemoveByNode_Call {
_c . Call . Return ( )
return _c
}
2022-09-21 06:42:51 +00:00
// Start provides a mock function with given fields: ctx
func ( _m * MockScheduler ) Start ( ctx context . Context ) {
_m . Called ( ctx )
}
// MockScheduler_Start_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Start'
type MockScheduler_Start_Call struct {
* mock . Call
}
// Start is a helper method to define mock.On call
// - ctx context.Context
func ( _e * MockScheduler_Expecter ) Start ( ctx interface { } ) * MockScheduler_Start_Call {
return & MockScheduler_Start_Call { Call : _e . mock . On ( "Start" , ctx ) }
}
func ( _c * MockScheduler_Start_Call ) Run ( run func ( ctx context . Context ) ) * MockScheduler_Start_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( args [ 0 ] . ( context . Context ) )
} )
return _c
}
func ( _c * MockScheduler_Start_Call ) Return ( ) * MockScheduler_Start_Call {
_c . Call . Return ( )
return _c
}
// Stop provides a mock function with given fields:
func ( _m * MockScheduler ) Stop ( ) {
_m . Called ( )
}
// MockScheduler_Stop_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Stop'
type MockScheduler_Stop_Call struct {
* mock . Call
}
// Stop is a helper method to define mock.On call
func ( _e * MockScheduler_Expecter ) Stop ( ) * MockScheduler_Stop_Call {
return & MockScheduler_Stop_Call { Call : _e . mock . On ( "Stop" ) }
}
func ( _c * MockScheduler_Stop_Call ) Run ( run func ( ) ) * MockScheduler_Stop_Call {
_c . Call . Run ( func ( args mock . Arguments ) {
run ( )
} )
return _c
}
func ( _c * MockScheduler_Stop_Call ) Return ( ) * MockScheduler_Stop_Call {
_c . Call . Return ( )
return _c
}
2022-09-15 10:48:32 +00:00
type mockConstructorTestingTNewMockScheduler interface {
mock . TestingT
Cleanup ( func ( ) )
}
// NewMockScheduler creates a new instance of MockScheduler. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewMockScheduler ( t mockConstructorTestingTNewMockScheduler ) * MockScheduler {
mock := & MockScheduler { }
mock . Mock . Test ( t )
t . Cleanup ( func ( ) { mock . AssertExpectations ( t ) } )
return mock
}