Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(826)

Side by Side Diff: content/test/unittest_test_suite.h

Issue 10483003: Move the rest of the content\test headers that are used by embedders to content\public\test. This w… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium 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 CONTENT_TEST_UNITTEST_TEST_SUITE_H_
6 #define CONTENT_TEST_UNITTEST_TEST_SUITE_H_
7 #pragma once
8
9 #include "base/basictypes.h"
10 #include "base/memory/scoped_ptr.h"
11
12 namespace base {
13 class TestSuite;
14 }
15
16 // A special test suite that also initializes WebKit once for all unittests.
17 // This is useful for two reasons:
18 // 1. It allows the use of some primitive WebKit data types like WebString.
19 // 2. Individual unittests should not be initting WebKit on their own, initting
20 // it here ensures attempts to do so within an individual test will fail.
21 class UnitTestTestSuite {
22 public:
23 // Takes ownership of |test_suite|.
24 explicit UnitTestTestSuite(base::TestSuite* test_suite);
25 ~UnitTestTestSuite();
26
27 int Run();
28
29 private:
30 scoped_ptr<base::TestSuite> test_suite_;
31
32 class UnitTestWebKitPlatformSupport;
33 scoped_ptr<UnitTestWebKitPlatformSupport> webkit_platform_support_;
34
35 DISALLOW_COPY_AND_ASSIGN(UnitTestTestSuite);
36 };
37
38 #endif // CONTENT_TEST_UNITTEST_TEST_SUITE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698