OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_TEST_UNITTEST_TEST_SUITE_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_UNITTEST_TEST_SUITE_H_ |
6 #define CONTENT_PUBLIC_TEST_UNITTEST_TEST_SUITE_H_ | 6 #define CONTENT_PUBLIC_TEST_UNITTEST_TEST_SUITE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 | 10 |
11 namespace base { | 11 namespace base { |
12 class TestSuite; | 12 class TestSuite; |
13 } | 13 } |
14 | 14 |
15 namespace content { | 15 namespace content { |
| 16 class TestWebKitPlatformSupport; |
16 | 17 |
17 // A special test suite that also initializes WebKit once for all unittests. | 18 // A special test suite that also initializes WebKit once for all unittests. |
18 // This is useful for two reasons: | 19 // This is useful for two reasons: |
19 // 1. It allows the use of some primitive WebKit data types like WebString. | 20 // 1. It allows the use of some primitive WebKit data types like WebString. |
20 // 2. Individual unittests should not be initting WebKit on their own, initting | 21 // 2. Individual unittests should not be initting WebKit on their own, initting |
21 // it here ensures attempts to do so within an individual test will fail. | 22 // it here ensures attempts to do so within an individual test will fail. |
22 class UnitTestTestSuite { | 23 class UnitTestTestSuite { |
23 public: | 24 public: |
24 // Takes ownership of |test_suite|. | 25 // Takes ownership of |test_suite|. |
25 explicit UnitTestTestSuite(base::TestSuite* test_suite); | 26 explicit UnitTestTestSuite(base::TestSuite* test_suite); |
26 ~UnitTestTestSuite(); | 27 ~UnitTestTestSuite(); |
27 | 28 |
28 int Run(); | 29 int Run(); |
29 | 30 |
30 private: | 31 private: |
31 scoped_ptr<base::TestSuite> test_suite_; | 32 scoped_ptr<base::TestSuite> test_suite_; |
32 | 33 |
33 #if !defined(OS_IOS) | 34 #if !defined(OS_IOS) |
34 class UnitTestWebKitPlatformSupport; | 35 scoped_ptr<TestWebKitPlatformSupport> platform_support_; |
35 scoped_ptr<UnitTestWebKitPlatformSupport> webkit_platform_support_; | |
36 #endif | 36 #endif |
37 | 37 |
38 DISALLOW_COPY_AND_ASSIGN(UnitTestTestSuite); | 38 DISALLOW_COPY_AND_ASSIGN(UnitTestTestSuite); |
39 }; | 39 }; |
40 | 40 |
41 } // namespace content | 41 } // namespace content |
42 | 42 |
43 #endif // CONTENT_PUBLIC_TEST_UNITTEST_TEST_SUITE_H_ | 43 #endif // CONTENT_PUBLIC_TEST_UNITTEST_TEST_SUITE_H_ |
OLD | NEW |