blob: 7e8a5cee611f0c3374019f935b88bbbf518d0cd5 [file] [log] [blame]
Chris Masonea82b7112011-05-25 15:16:29 -07001// Copyright (c) 2011 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_service.h"
6
7#include <string>
8
9#include <base/memory/ref_counted.h>
10#include <base/stringprintf.h>
11#include <gmock/gmock.h>
12
13namespace shill {
14
15class ControlInterface;
16class EventDispatcher;
17
18using ::testing::Return;
19using std::string;
20
21MockService::MockService(ControlInterface *control_interface,
22 EventDispatcher *dispatcher,
Chris Masonec1e50412011-06-07 13:04:53 -070023 DeviceConfigInterfaceRefPtr device,
Chris Masonea82b7112011-05-25 15:16:29 -070024 const std::string& name)
Chris Masonee0dea762011-06-09 09:06:03 -070025 : Service(control_interface, dispatcher, device, name) {
Chris Masonea82b7112011-05-25 15:16:29 -070026}
27
28MockService::~MockService() {}
29
30} // namespace shill