87 lines
2.6 KiB
Go
87 lines
2.6 KiB
Go
// /*
|
|
// Copyright © 2022 - 2025 SUSE LLC
|
|
//
|
|
// 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 MockGen. DO NOT EDIT.
|
|
// Source: github.com/rancher/elemental-operator/pkg/elementalcli (interfaces: Runner)
|
|
//
|
|
// Generated by this command:
|
|
//
|
|
// mockgen-v0.4.0 -copyright_file=scripts/boilerplate.go.txt -destination=pkg/elementalcli/mocks/elementalcli.go -package=mocks github.com/rancher/elemental-operator/pkg/elementalcli Runner
|
|
//
|
|
|
|
// Package mocks is a generated GoMock package.
|
|
package mocks
|
|
|
|
import (
|
|
reflect "reflect"
|
|
|
|
v1beta1 "github.com/rancher/elemental-operator/api/v1beta1"
|
|
gomock "go.uber.org/mock/gomock"
|
|
)
|
|
|
|
// MockRunner is a mock of Runner interface.
|
|
type MockRunner struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockRunnerMockRecorder
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// Install mocks base method.
|
|
func (m *MockRunner) Install(arg0 v1beta1.Install) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Install", arg0)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// Install indicates an expected call of Install.
|
|
func (mr *MockRunnerMockRecorder) Install(arg0 any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Install", reflect.TypeOf((*MockRunner)(nil).Install), arg0)
|
|
}
|
|
|
|
// Reset mocks base method.
|
|
func (m *MockRunner) Reset(arg0 v1beta1.Reset) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Reset", arg0)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// Reset indicates an expected call of Reset.
|
|
func (mr *MockRunnerMockRecorder) Reset(arg0 any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Reset", reflect.TypeOf((*MockRunner)(nil).Reset), arg0)
|
|
}
|