blob: 7146ede94e0b4cf9f83ac0549b36cf8a32b7958e [file] [log] [blame]
Darin Petkove9d12e02011-07-27 15:09:37 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_MOCK_MODEM_PROXY_H_
6#define SHILL_MOCK_MODEM_PROXY_H_
7
8#include <gmock/gmock.h>
9
10#include "shill/modem_proxy_interface.h"
11
12namespace shill {
13
14class MockModemProxy : public ModemProxyInterface {
15 public:
16 MOCK_METHOD1(Enable, void(const bool enable));
17};
18
19} // namespace shill
20
21#endif // SHILL_MOCK_MODEM_PROXY_H_