blob: 85a1298f9ccd1f177c1d9fd567de921fd2bdeeac [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/mock_control.h"
#include <memory>
#include <gmock/gmock.h>
#include "shill/mock_adaptors.h"
using testing::NiceMock;
namespace shill {
MockControl::MockControl() = default;
MockControl::~MockControl() = default;
std::unique_ptr<DeviceAdaptorInterface> MockControl::CreateDeviceAdaptor(
Device* /*device*/) {
return std::make_unique<NiceMock<DeviceMockAdaptor>>();
}
std::unique_ptr<IPConfigAdaptorInterface> MockControl::CreateIPConfigAdaptor(
IPConfig* /*config*/) {
return std::make_unique<NiceMock<IPConfigMockAdaptor>>();
}
std::unique_ptr<ManagerAdaptorInterface> MockControl::CreateManagerAdaptor(
Manager* /*manager*/) {
return std::make_unique<NiceMock<ManagerMockAdaptor>>();
}
std::unique_ptr<ProfileAdaptorInterface> MockControl::CreateProfileAdaptor(
Profile* /*profile*/) {
return std::make_unique<NiceMock<ProfileMockAdaptor>>();
}
std::unique_ptr<RpcTaskAdaptorInterface> MockControl::CreateRpcTaskAdaptor(
RpcTask* /*task*/) {
return std::make_unique<NiceMock<RpcTaskMockAdaptor>>();
}
std::unique_ptr<ServiceAdaptorInterface> MockControl::CreateServiceAdaptor(
Service* /*service*/) {
return std::make_unique<NiceMock<ServiceMockAdaptor>>();
}
#ifndef DISABLE_VPN
std::unique_ptr<ThirdPartyVpnAdaptorInterface>
MockControl::CreateThirdPartyVpnAdaptor(ThirdPartyVpnDriver* /*driver*/) {
return std::make_unique<NiceMock<ThirdPartyVpnMockAdaptor>>();
}
#endif
const RpcIdentifier& MockControl::NullRpcIdentifier() {
return null_identifier_;
}
} // namespace shill