blob: ec6eee7811dd674e85427b9ec51b6148b52b7bbb [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.
#ifndef SHILL_MOCK_PPP_DEVICE_FACTORY_H_
#define SHILL_MOCK_PPP_DEVICE_FACTORY_H_
#include <string>
#include <base/macros.h>
#include <base/no_destructor.h>
#include <gmock/gmock.h>
#include "shill/ppp_device_factory.h"
namespace shill {
class MockPPPDeviceFactory : public PPPDeviceFactory {
public:
~MockPPPDeviceFactory() override;
// This is a singleton. Use MockPPPDeviceFactory::GetInstance()->Foo().
static MockPPPDeviceFactory* GetInstance();
MOCK_METHOD(PPPDevice*,
CreatePPPDevice,
(Manager*, const std::string&, int),
(override));
protected:
MockPPPDeviceFactory();
MockPPPDeviceFactory(const MockPPPDeviceFactory&) = delete;
MockPPPDeviceFactory& operator=(const MockPPPDeviceFactory&) = delete;
private:
friend class base::NoDestructor<MockPPPDeviceFactory>;
};
} // namespace shill
#endif // SHILL_MOCK_PPP_DEVICE_FACTORY_H_