blob: 30b6238e6b405e38a6e30823f549d190c41d2cbf [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/mock_dbus_objectmanager_proxy.h"
using ::testing::_;
using ::testing::AnyNumber;
namespace shill {
MockDBusObjectManagerProxy::MockDBusObjectManagerProxy() {}
MockDBusObjectManagerProxy::~MockDBusObjectManagerProxy() {}
void MockDBusObjectManagerProxy::IgnoreSetCallbacks() {
EXPECT_CALL(*this, set_interfaces_added_callback(_)).Times(AnyNumber());
EXPECT_CALL(*this, set_interfaces_removed_callback(_)).Times(AnyNumber());
}
} // namespace shill