internal/dataprovider/providers/cloud/mock_option.go (43 lines of code) (raw):

// Licensed to Elasticsearch B.V. under one or more contributor // license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright // ownership. Elasticsearch B.V. licenses this file to you 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 v2.53.3. DO NOT EDIT. package cloud import mock "github.com/stretchr/testify/mock" // MockOption is an autogenerated mock type for the Option type type MockOption struct { mock.Mock } type MockOption_Expecter struct { mock *mock.Mock } func (_m *MockOption) EXPECT() *MockOption_Expecter { return &MockOption_Expecter{mock: &_m.Mock} } // Execute provides a mock function with given fields: _a0 func (_m *MockOption) Execute(_a0 *DataProvider) { _m.Called(_a0) } // MockOption_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute' type MockOption_Execute_Call struct { *mock.Call } // Execute is a helper method to define mock.On call // - _a0 *DataProvider func (_e *MockOption_Expecter) Execute(_a0 interface{}) *MockOption_Execute_Call { return &MockOption_Execute_Call{Call: _e.mock.On("Execute", _a0)} } func (_c *MockOption_Execute_Call) Run(run func(_a0 *DataProvider)) *MockOption_Execute_Call { _c.Call.Run(func(args mock.Arguments) { run(args[0].(*DataProvider)) }) return _c } func (_c *MockOption_Execute_Call) Return() *MockOption_Execute_Call { _c.Call.Return() return _c } func (_c *MockOption_Execute_Call) RunAndReturn(run func(*DataProvider)) *MockOption_Execute_Call { _c.Run(run) return _c } // NewMockOption creates a new instance of MockOption. 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 NewMockOption(t interface { mock.TestingT Cleanup(func()) }) *MockOption { mock := &MockOption{} mock.Mock.Test(t) t.Cleanup(func() { mock.AssertExpectations(t) }) return mock }