blob: a30bf6d2d1a943e78c8f68cc4d0822a705c31d20 [file] [log] [blame]
Thieu Le3426c8f2012-01-11 17:35:11 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Darin Petkovef34f182011-08-26 14:14:40 -07002// 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_manager.h"
6
Paul Stewart6ff27f52012-07-11 06:51:41 -07007#include <gmock/gmock.h>
8
9using testing::Return;
10
Darin Petkovef34f182011-08-26 14:14:40 -070011namespace shill {
12
13MockManager::MockManager(ControlInterface *control_interface,
14 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080015 Metrics *metrics,
Darin Petkovef34f182011-08-26 14:14:40 -070016 GLib *glib)
Paul Stewart6ff27f52012-07-11 06:51:41 -070017 : Manager(control_interface, dispatcher, metrics, glib, "", "", "") {
18 EXPECT_CALL(*this, device_info())
19 .WillRepeatedly(Return(reinterpret_cast<DeviceInfo *>(NULL)));
20}
Darin Petkovef34f182011-08-26 14:14:40 -070021
22MockManager::~MockManager() {}
23
24} // namespace shill