blob: 3dd5e35b0991a15931239ef932768d6b5cdf86e0 [file] [log] [blame]
Darin Petkov33af05c2012-02-28 10:10:30 +01001// 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_VPN_DRIVER_
6#define SHILL_MOCK_VPN_DRIVER_
7
8#include <gmock/gmock.h>
9
10#include "shill/vpn_driver.h"
11
12namespace shill {
13
14class MockVPNDriver : public VPNDriver {
15 public:
16 MockVPNDriver();
17 virtual ~MockVPNDriver();
18
19 MOCK_METHOD1(Connect, void(Error *error));
20};
21
22} // namespace shill
23
24#endif // SHILL_MOCK_VPN_DRIVER_