blob: ce481e7752c399ade80e4f2aadf5953f66c77859 [file] [log] [blame]
David Rochberg7cb06f62012-03-05 11:23:44 -05001// Copyright (c) 2012 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_OBJECTMANAGER_PROXY_H_
6#define SHILL_MOCK_DBUS_OBJECTMANAGER_PROXY_H_
7
8#include <base/basictypes.h>
9#include <gmock/gmock.h>
10
11#include "shill/dbus_objectmanager_proxy_interface.h"
12
13namespace shill {
14
15class MockDBusObjectManagerProxy : public DBusObjectManagerProxyInterface {
16 public:
17 MockDBusObjectManagerProxy();
18 virtual ~MockDBusObjectManagerProxy();
19
20 MOCK_METHOD2(GetManagedObjects, void(AsyncCallHandler *call_handler,
21 int timeout));
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(MockDBusObjectManagerProxy);
25};
26
27} // namespace shill
28
29#endif // SHILL_MOCK_DBUS_OBJECTMANAGER_PROXY_H_