blob: a88fbc8c2964d99c89d8f096bd6faebeccd08d1c [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>
#include "shill/refptr_types.h"
using std::string;
using testing::Return;
namespace shill {
class ControlInterface;
class EventDispatcher;
class Manager;
MockService::MockService(ControlInterface *control_interface,
EventDispatcher *dispatcher,
Manager *manager)
: Service(control_interface, dispatcher, manager) {
ON_CALL(*this, GetRpcIdentifier()).WillByDefault(Return(""));
}
MockService::~MockService() {}
} // namespace shill