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"
10 #include "third_party/WebKit/public/web/WebKit.h"
13 #include "ui/aura/env.h"
21 #include "content/test/test_blink_web_unit_test_support.h"
26 UnitTestTestSuite::UnitTestTestSuite(base::TestSuite
* test_suite
)
27 : test_suite_(test_suite
) {
32 DCHECK(!aura::Env::GetInstanceDontCreate());
33 const bool create_event_source
= true;
34 aura::Env::CreateInstance(create_event_source
);
38 blink_test_support_
.reset(new TestBlinkWebUnitTestSupport
);
42 UnitTestTestSuite::~UnitTestTestSuite() {
44 blink_test_support_
.reset();
47 aura::Env::DeleteInstance();
51 int UnitTestTestSuite::Run() {
52 return test_suite_
->Run();
55 } // namespace content