mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
247c2586c2
* refactor: ast package * feat: read -> taskfile * refactor: taskfile.Taskfile -> taskfile.Read * refactor: move merge function back into taskfile package * refactor: rename taskfile.go to read.go
93 lines
2.5 KiB
Go
93 lines
2.5 KiB
Go
// Code generated by mockery v2.24.0. DO NOT EDIT.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
context "context"
|
|
|
|
ast "github.com/go-task/task/v3/taskfile/ast"
|
|
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// StatusCheckable is an autogenerated mock type for the StatusCheckable type
|
|
type StatusCheckable struct {
|
|
mock.Mock
|
|
}
|
|
|
|
type StatusCheckable_Expecter struct {
|
|
mock *mock.Mock
|
|
}
|
|
|
|
func (_m *StatusCheckable) EXPECT() *StatusCheckable_Expecter {
|
|
return &StatusCheckable_Expecter{mock: &_m.Mock}
|
|
}
|
|
|
|
// IsUpToDate provides a mock function with given fields: ctx, t
|
|
func (_m *StatusCheckable) IsUpToDate(ctx context.Context, t *ast.Task) (bool, error) {
|
|
ret := _m.Called(ctx, t)
|
|
|
|
var r0 bool
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(context.Context, *ast.Task) (bool, error)); ok {
|
|
return rf(ctx, t)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(context.Context, *ast.Task) bool); ok {
|
|
r0 = rf(ctx, t)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(context.Context, *ast.Task) error); ok {
|
|
r1 = rf(ctx, t)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// StatusCheckable_IsUpToDate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'IsUpToDate'
|
|
type StatusCheckable_IsUpToDate_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// IsUpToDate is a helper method to define mock.On call
|
|
// - ctx context.Context
|
|
// - t *ast.Task
|
|
func (_e *StatusCheckable_Expecter) IsUpToDate(ctx interface{}, t interface{}) *StatusCheckable_IsUpToDate_Call {
|
|
return &StatusCheckable_IsUpToDate_Call{Call: _e.mock.On("IsUpToDate", ctx, t)}
|
|
}
|
|
|
|
func (_c *StatusCheckable_IsUpToDate_Call) Run(run func(ctx context.Context, t *ast.Task)) *StatusCheckable_IsUpToDate_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(context.Context), args[1].(*ast.Task))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *StatusCheckable_IsUpToDate_Call) Return(_a0 bool, _a1 error) *StatusCheckable_IsUpToDate_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *StatusCheckable_IsUpToDate_Call) RunAndReturn(run func(context.Context, *ast.Task) (bool, error)) *StatusCheckable_IsUpToDate_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
type mockConstructorTestingTNewStatusCheckable interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}
|
|
|
|
// NewStatusCheckable creates a new instance of StatusCheckable. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
|
|
func NewStatusCheckable(t mockConstructorTestingTNewStatusCheckable) *StatusCheckable {
|
|
mock := &StatusCheckable{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|