Files
velero/pkg/uploader/mocks/shim.go
2022-08-19 06:39:28 +00:00

43 lines
1.0 KiB
Go

/*
Copyright 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.
*/
package mocks
import (
context "context"
mock "github.com/stretchr/testify/mock"
)
// shimRepository is an autogenerated mock type for the shimRepository type
type ShimRepository struct {
mock.Mock
}
// Flush provides a mock function with given fields: ctx
func (_m *ShimRepository) Flush(ctx context.Context) error {
ret := _m.Called(ctx)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context) error); ok {
r0 = rf(ctx)
} else {
r0 = ret.Error(0)
}
return r0
}