blob: a89fe74a76047e162dbb558c7bd149621731f12a [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
Alex Vakulenko8a532292014-06-16 17:18:44 -07008#include <string>
9
Darin Petkovc37a9c42012-09-06 15:28:22 +020010#include <base/basictypes.h>
11#include <gmock/gmock.h>
12
13#include "shill/modem_gobi_proxy_interface.h"
14
15namespace shill {
16
17class MockModemGobiProxy : public ModemGobiProxyInterface {
18 public:
19 MockModemGobiProxy();
Ben Chan5ea763b2014-08-13 11:07:54 -070020 ~MockModemGobiProxy() override;
Darin Petkovc37a9c42012-09-06 15:28:22 +020021
22 MOCK_METHOD4(SetCarrier, void(const std::string &carrier,
23 Error *error, const ResultCallback &callback,
24 int timeout));
25
26 private:
27 DISALLOW_COPY_AND_ASSIGN(MockModemGobiProxy);
28};
29
30} // namespace shill
31
32#endif // SHILL_MOCK_MODEM_GOBI_PROXY_H_