blob: 7ebcae7ee81e3116eec1d5290808f29108f22b41 [file] [log] [blame]
Darin Petkov1c115202012-03-22 15:35:47 +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#include "shill/openvpn_management_server.h"
6
7#include <gtest/gtest.h>
8
9#include "shill/key_value_store.h"
10#include "shill/mock_openvpn_driver.h"
11
12namespace shill {
13
14class OpenVPNManagementServerTest : public testing::Test {
15 public:
16 OpenVPNManagementServerTest()
17 : driver_(args_),
18 server_(&driver_) {}
19
20 virtual ~OpenVPNManagementServerTest() {}
21
22 protected:
23 KeyValueStore args_;
24 MockOpenVPNDriver driver_;
25 OpenVPNManagementServer server_;
26};
27
Darin Petkov78f63262012-03-26 01:30:24 +020028TEST_F(OpenVPNManagementServerTest, Start) {
29 // TODO(petkov): Add unit tests.
Darin Petkov1c115202012-03-22 15:35:47 +010030}
31
32} // namespace shill