blob: 573838aad9ba45d450c3eb4cddeb9e60f7c858bb [file]
// Copyright (c) 2012 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 "content/public/test/unittest_test_suite.h"
#include "base/logging.h"
#include "base/rand_util.h"
#include "base/test/test_suite.h"
#include "third_party/WebKit/public/web/WebKit.h"
#if defined(USE_AURA)
#include "ui/aura/env.h"
#endif
#if defined(USE_X11)
#include <X11/Xlib.h>
#endif
#if !defined(OS_IOS)
#include "content/test/test_blink_web_unit_test_support.h"
#endif
namespace content {
UnitTestTestSuite::UnitTestTestSuite(base::TestSuite* test_suite)
: test_suite_(test_suite) {
#if defined(USE_X11)
XInitThreads();
#endif
#if defined(USE_AURA)
DCHECK(!aura::Env::GetInstanceDontCreate());
const bool create_event_source = true;
aura::Env::CreateInstance(create_event_source);
#endif
DCHECK(test_suite);
#if !defined(OS_IOS)
blink_test_support_.reset(new TestBlinkWebUnitTestSupport);
#endif
}
UnitTestTestSuite::~UnitTestTestSuite() {
#if !defined(OS_IOS)
blink_test_support_.reset();
#endif
#if defined(USE_AURA)
aura::Env::DeleteInstance();
#endif
}
int UnitTestTestSuite::Run() {
return test_suite_->Run();
}
} // namespace content