blob: eb5ba1757703c7a8e158f8910f57122e2cf2595e [file] [log] [blame]
Darin Petkove4b27022012-05-16 13:28:50 +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_WIMAX_PROVIDER_H_
6#define SHILL_MOCK_WIMAX_PROVIDER_H_
7
8#include <gmock/gmock.h>
9
10#include "shill/wimax_provider.h"
11
12namespace shill {
13
14class MockWiMaxProvider : public WiMaxProvider {
15 public:
16 MockWiMaxProvider();
17 virtual ~MockWiMaxProvider();
18
19 MOCK_METHOD1(OnDeviceInfoAvailable, void(const std::string &link_name));
20
21 private:
22 DISALLOW_COPY_AND_ASSIGN(MockWiMaxProvider);
23};
24
25} // namespace shill
26
27#endif // SHILL_MOCK_WIMAX_PROVIDER_H_