56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: task.go
|
|
//
|
|
// Generated by this command:
|
|
//
|
|
// mockgen -destination runner_mock.go -source task.go -package gc
|
|
//
|
|
|
|
// Package gc is a generated GoMock package.
|
|
package gc
|
|
|
|
import (
|
|
context "context"
|
|
reflect "reflect"
|
|
|
|
gomock "go.uber.org/mock/gomock"
|
|
)
|
|
|
|
// MockRunner is a mock of Runner interface.
|
|
type MockRunner struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockRunnerMockRecorder
|
|
isgomock struct{}
|
|
}
|
|
|
|
// MockRunnerMockRecorder is the mock recorder for MockRunner.
|
|
type MockRunnerMockRecorder struct {
|
|
mock *MockRunner
|
|
}
|
|
|
|
// NewMockRunner creates a new mock instance.
|
|
func NewMockRunner(ctrl *gomock.Controller) *MockRunner {
|
|
mock := &MockRunner{ctrl: ctrl}
|
|
mock.recorder = &MockRunnerMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockRunner) EXPECT() *MockRunnerMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// RunGC mocks base method.
|
|
func (m *MockRunner) RunGC(arg0 context.Context) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "RunGC", arg0)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// RunGC indicates an expected call of RunGC.
|
|
func (mr *MockRunnerMockRecorder) RunGC(arg0 any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RunGC", reflect.TypeOf((*MockRunner)(nil).RunGC), arg0)
|
|
}
|