blob: caa6aac41c842f0044615ab1c1e33dd7b52660ec [file] [log] [blame]
Darin Petkov18fb2f72012-06-14 09:09:34 +02001// 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_service_proxy.h"
6
Prathmesh Prabhu125aea82014-09-17 16:11:32 -07007#include "shill/testing.h"
8
9using testing::_;
10
Darin Petkov18fb2f72012-06-14 09:09:34 +020011namespace shill {
12
Prathmesh Prabhu125aea82014-09-17 16:11:32 -070013MockDBusServiceProxy::MockDBusServiceProxy() {
14 ON_CALL(*this, GetNameOwner(_, _, _, _))
15 .WillByDefault(SetOperationFailedInArgumentAndWarn<1>());
16}
Darin Petkov18fb2f72012-06-14 09:09:34 +020017
18MockDBusServiceProxy::~MockDBusServiceProxy() {}
19
20} // namespace shill