blob: 18b5d6e5c44059bd7d3e12af0d3b46d79ca0e272 [file] [log] [blame]
Darin Petkove0a312e2011-07-20 13:45:28 -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_DBUS_PROPERTIES_PROXY_H_
6#define SHILL_MOCK_DBUS_PROPERTIES_PROXY_H_
7
8#include <gmock/gmock.h>
9
10#include "shill/dbus_properties_proxy_interface.h"
11
12namespace shill {
13
14class MockDBusPropertiesProxy : public DBusPropertiesProxyInterface {
15 public:
16 MOCK_METHOD1(GetAll, DBusPropertiesMap(const std::string &interface_name));
17};
18
19} // namespace shill
20
21#endif // SHILL_MOCK_DBUS_PROPERTIES_PROXY_H_