blob: f0ba0a23b96344b34058e8b38c8066b85fdd1f4e [file] [log] [blame]
Darin Petkove604f702011-07-28 15:51:17 -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_SIMPLE_PROXY_H_
6#define SHILL_MOCK_MODEM_SIMPLE_PROXY_H_
7
8#include <gmock/gmock.h>
9
10#include "shill/modem_simple_proxy_interface.h"
11
12namespace shill {
13
14class MockModemSimpleProxy : public ModemSimpleProxyInterface {
15 public:
16 MOCK_METHOD0(GetStatus, DBusPropertiesMap());
17};
18
19} // namespace shill
20
21#endif // SHILL_MOCK_MODEM_SIMPLE_PROXY_H_