1 // Copyright (c) 2012 The Chromium 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.
5 #ifndef DBUS_MOCK_OBJECT_PROXY_H_
6 #define DBUS_MOCK_OBJECT_PROXY_H_
10 #include "dbus/object_path.h"
11 #include "dbus/object_proxy.h"
12 #include "testing/gmock/include/gmock/gmock.h"
16 // Mock for ObjectProxy.
17 class MockObjectProxy
: public ObjectProxy
{
19 MockObjectProxy(Bus
* bus
,
20 const std::string
& service_name
,
21 const ObjectPath
& object_path
);
23 MOCK_METHOD2(CallMethodAndBlock
, Response
*(MethodCall
* method_call
,
25 MOCK_METHOD3(CallMethod
, void(MethodCall
* method_call
,
27 ResponseCallback callback
));
28 MOCK_METHOD4(CallMethodWithErrorCallback
, void(MethodCall
* method_call
,
30 ResponseCallback callback
,
31 ErrorCallback error_callback
));
32 MOCK_METHOD4(ConnectToSignal
,
33 void(const std::string
& interface_name
,
34 const std::string
& signal_name
,
35 SignalCallback signal_callback
,
36 OnConnectedCallback on_connected_callback
));
37 MOCK_METHOD0(Detach
, void());
40 virtual ~MockObjectProxy();
45 #endif // DBUS_MOCK_OBJECT_PROXY_H_