blob: d824caea67da6cd06e5b8e9011960d8692317452 [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
Ben Chanc54afe52014-11-05 10:28:08 -08005#ifndef SHILL_CELLULAR_MOCK_MODEM_GOBI_PROXY_H_
6#define SHILL_CELLULAR_MOCK_MODEM_GOBI_PROXY_H_
Darin Petkovc37a9c42012-09-06 15:28:22 +02007
Alex Vakulenko8a532292014-06-16 17:18:44 -07008#include <string>
9
Ben Chancc67c522014-09-03 07:19:18 -070010#include <base/macros.h>
Darin Petkovc37a9c42012-09-06 15:28:22 +020011#include <gmock/gmock.h>
12
Ben Chanc54afe52014-11-05 10:28:08 -080013#include "shill/cellular/modem_gobi_proxy_interface.h"
Darin Petkovc37a9c42012-09-06 15:28:22 +020014
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
Paul Stewart2f6c7892015-06-16 13:13:10 -070022 MOCK_METHOD4(SetCarrier, void(const std::string& carrier,
23 Error* error, const ResultCallback& callback,
Darin Petkovc37a9c42012-09-06 15:28:22 +020024 int timeout));
25
26 private:
27 DISALLOW_COPY_AND_ASSIGN(MockModemGobiProxy);
28};
29
30} // namespace shill
31
Ben Chanc54afe52014-11-05 10:28:08 -080032#endif // SHILL_CELLULAR_MOCK_MODEM_GOBI_PROXY_H_