blob: cfea65cdf06f133b0cff5262e3bac11151a3abaf [file] [log] [blame]
Arman Uguray6e5639f2012-11-15 20:30:19 -08001// 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_MM1_MOCK_BEARER_PROXY_H_
6#define SHILL_MM1_MOCK_BEARER_PROXY_H_
7
8#include <string>
9
10#include <base/basictypes.h>
11#include <gmock/gmock.h>
12
13#include "shill/mm1_bearer_proxy_interface.h"
14
15namespace shill {
16namespace mm1 {
17
18class MockBearerProxy : public BearerProxyInterface {
19 public:
20 MockBearerProxy();
21 virtual ~MockBearerProxy();
22
23 MOCK_METHOD3(Connect, void(Error *error,
24 const ResultCallback &callback,
25 int timeout));
26 MOCK_METHOD3(Disconnect, void(Error *error,
27 const ResultCallback &callback,
28 int timeout));
Arman Uguray6e5639f2012-11-15 20:30:19 -080029};
30
31} // namespace mm1
32} // namespace shill
33
34#endif // SHILL_MM1_MOCK_BEARER_PROXY_H_