David Rochberg | 7cb06f6 | 2012-03-05 11:23:44 -0500 | [diff] [blame] | 1 | // 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 | #include "shill/mock_dbus_objectmanager_proxy.h" |
| 6 | |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 7 | using ::testing::_; |
| 8 | using ::testing::AnyNumber; |
David Rochberg | 7cb06f6 | 2012-03-05 11:23:44 -0500 | [diff] [blame] | 9 | |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 10 | namespace shill { |
David Rochberg | 7cb06f6 | 2012-03-05 11:23:44 -0500 | [diff] [blame] | 11 | MockDBusObjectManagerProxy::MockDBusObjectManagerProxy() {} |
| 12 | |
| 13 | MockDBusObjectManagerProxy::~MockDBusObjectManagerProxy() {} |
| 14 | |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 15 | void MockDBusObjectManagerProxy::IgnoreSetCallbacks() { |
| 16 | EXPECT_CALL(*this, set_interfaces_added_callback(_)).Times(AnyNumber()); |
| 17 | EXPECT_CALL(*this, set_interfaces_removed_callback(_)).Times(AnyNumber()); |
| 18 | } |
David Rochberg | 7cb06f6 | 2012-03-05 11:23:44 -0500 | [diff] [blame] | 19 | } // namespace shill |