73 lines
1.9 KiB
Go
73 lines
1.9 KiB
Go
/*
|
|
Copyright 2018 the Velero contributors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
// Code generated by mockery v1.0.0. DO NOT EDIT.
|
|
package mocks
|
|
|
|
import (
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
|
"github.com/heptio/velero/pkg/plugin/velero"
|
|
)
|
|
|
|
// ItemAction is an autogenerated mock type for the ItemAction type
|
|
type ItemAction struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// AppliesTo provides a mock function with given fields:
|
|
func (_m *ItemAction) AppliesTo() (velero.ResourceSelector, error) {
|
|
ret := _m.Called()
|
|
|
|
var r0 velero.ResourceSelector
|
|
if rf, ok := ret.Get(0).(func() velero.ResourceSelector); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(velero.ResourceSelector)
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func() error); ok {
|
|
r1 = rf()
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// Execute provides a mock function with given fields: input
|
|
func (_m *ItemAction) Execute(input *velero.RestoreItemActionExecuteInput) (*velero.RestoreItemActionExecuteOutput, error) {
|
|
ret := _m.Called(input)
|
|
|
|
var r0 *velero.RestoreItemActionExecuteOutput
|
|
if rf, ok := ret.Get(0).(func(*velero.RestoreItemActionExecuteInput) *velero.RestoreItemActionExecuteOutput); ok {
|
|
r0 = rf(input)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*velero.RestoreItemActionExecuteOutput)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(*velero.RestoreItemActionExecuteInput) error); ok {
|
|
r1 = rf(input)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|