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
3 // found in the LICENSE file.
5 #include "content/public/test/unittest_test_suite.h"
7 #include "base/logging.h"
8 #include "base/rand_util.h"
9 #include "base/test/test_suite.h"
11 #include "content/test/test_webkit_platform_support.h"
13 #include "third_party/WebKit/public/web/WebKit.h"
17 UnitTestTestSuite::UnitTestTestSuite(base::TestSuite
* test_suite
)
18 : test_suite_(test_suite
) {
21 platform_support_
.reset(new TestWebKitPlatformSupport
);
25 UnitTestTestSuite::~UnitTestTestSuite() {
27 platform_support_
.reset();
31 int UnitTestTestSuite::Run() {
32 return test_suite_
->Run();
35 } // namespace content