blob: 7e8a5cee611f0c3374019f935b88bbbf518d0cd5 [file] [log] [blame]
// Copyright (c) 2011 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_service.h"
#include <string>
#include <base/memory/ref_counted.h>
#include <base/stringprintf.h>
#include <gmock/gmock.h>
namespace shill {
class ControlInterface;
class EventDispatcher;
using ::testing::Return;
using std::string;
MockService::MockService(ControlInterface *control_interface,
EventDispatcher *dispatcher,
DeviceConfigInterfaceRefPtr device,
const std::string& name)
: Service(control_interface, dispatcher, device, name) {
}
MockService::~MockService() {}
} // namespace shill