blob: 2c5a2ad9c34f38e8dfad8c276682a772b662278b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/scoped_ptr.h"
#include "remoting/client/client_config.h"
#include "remoting/client/client_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace remoting {
// TODO(ajwong): Fill this out.
class ClientUtilTest : public testing::Test {
protected:
virtual void SetUp() {
}
};
} // namespace remoting
|