blob: 8b5be052e02a15d426966312e3a0a06825a930db [file] [log] [blame]
// Copyright (c) 2012 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.
#ifndef SHILL_MOCK_CELLULAR_H_
#define SHILL_MOCK_CELLULAR_H_
#include <string>
#include <vector>
#include <gmock/gmock.h>
#include "shill/cellular.h"
namespace shill {
class MockCellular : public Cellular {
public:
MockCellular(ControlInterface *control_interface,
EventDispatcher *dispatcher,
Metrics *metrics,
Manager *manager,
const std::string &link_name,
const std::string &address,
int interface_index,
Type type,
const std::string &owner,
const std::string &service,
const std::string &path,
mobile_provider_db *provider_db,
ProxyFactory *proxy_factory);
virtual ~MockCellular();
MOCK_METHOD3(OnDBusPropertiesChanged, void(const std::string &,
const DBusPropertiesMap &,
const std::vector<std::string> &));
MOCK_METHOD1(set_modem_state, void(ModemState));
MOCK_METHOD0(DestroyService, void());
private:
DISALLOW_COPY_AND_ASSIGN(MockCellular);
};
} // namespace shill
#endif // SHILL_MOCK_CELLULAR_H_