blob: 66ece244c9d5678deac339fae0b677bddefe86bc [file] [log] [blame]
Darin Petkovc37a9c42012-09-06 15:28:22 +02001// Copyright (c) 2012 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#ifndef SHILL_MOCK_MODEM_GOBI_PROXY_H_
6#define SHILL_MOCK_MODEM_GOBI_PROXY_H_
7
8#include <base/basictypes.h>
9#include <gmock/gmock.h>
10
11#include "shill/modem_gobi_proxy_interface.h"
12
13namespace shill {
14
15class MockModemGobiProxy : public ModemGobiProxyInterface {
16 public:
17 MockModemGobiProxy();
18 virtual ~MockModemGobiProxy();
19
20 MOCK_METHOD4(SetCarrier, void(const std::string &carrier,
21 Error *error, const ResultCallback &callback,
22 int timeout));
23
24 private:
25 DISALLOW_COPY_AND_ASSIGN(MockModemGobiProxy);
26};
27
28} // namespace shill
29
30#endif // SHILL_MOCK_MODEM_GOBI_PROXY_H_