blob: bd0d4cd928043a276f4bfb09525d2800388f9b74 [file] [log] [blame]
// Copyright 2018 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SHILL_MOCK_VIRTUAL_DEVICE_H_
#define SHILL_MOCK_VIRTUAL_DEVICE_H_
#include <memory>
#include <string>
#include <gmock/gmock.h>
#include "shill/virtual_device.h"
namespace shill {
class MockVirtualDevice : public VirtualDevice {
public:
MockVirtualDevice(Manager* manager,
const std::string& link_name,
int interface_index,
Technology technology);
MockVirtualDevice(const MockVirtualDevice&) = delete;
MockVirtualDevice& operator=(const MockVirtualDevice&) = delete;
~MockVirtualDevice() override;
MOCK_METHOD(void, Stop, (const EnabledStateChangedCallback&), (override));
MOCK_METHOD(void,
UpdateIPConfig,
(std::unique_ptr<IPConfig::Properties>,
std::unique_ptr<IPConfig::Properties>),
(override));
MOCK_METHOD(void, DropConnection, (), (override));
MOCK_METHOD(void, ResetConnection, (), (override));
MOCK_METHOD(void, SelectService, (const ServiceRefPtr&), (override));
MOCK_METHOD(void, SetServiceState, (Service::ConnectState), (override));
MOCK_METHOD(void, SetServiceFailure, (Service::ConnectFailure), (override));
MOCK_METHOD(void,
SetServiceFailureSilent,
(Service::ConnectFailure),
(override));
MOCK_METHOD(void, SetEnabled, (bool), (override));
};
} // namespace shill
#endif // SHILL_MOCK_VIRTUAL_DEVICE_H_