harbor/src/testing/controller/scan/checker.go

59 lines
1.4 KiB
Go

// Code generated by mockery v2.42.2. DO NOT EDIT.
package scan
import (
context "context"
artifact "github.com/goharbor/harbor/src/controller/artifact"
mock "github.com/stretchr/testify/mock"
)
// Checker is an autogenerated mock type for the Checker type
type Checker struct {
mock.Mock
}
// IsScannable provides a mock function with given fields: ctx, _a1
func (_m *Checker) IsScannable(ctx context.Context, _a1 *artifact.Artifact) (bool, error) {
ret := _m.Called(ctx, _a1)
if len(ret) == 0 {
panic("no return value specified for IsScannable")
}
var r0 bool
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, *artifact.Artifact) (bool, error)); ok {
return rf(ctx, _a1)
}
if rf, ok := ret.Get(0).(func(context.Context, *artifact.Artifact) bool); ok {
r0 = rf(ctx, _a1)
} else {
r0 = ret.Get(0).(bool)
}
if rf, ok := ret.Get(1).(func(context.Context, *artifact.Artifact) error); ok {
r1 = rf(ctx, _a1)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// NewChecker creates a new instance of Checker. 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 NewChecker(t interface {
mock.TestingT
Cleanup(func())
}) *Checker {
mock := &Checker{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}