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 "cc/test/cc_test_suite.h"
7 #include "base/message_loop.h"
8 #include "cc/test/paths.h"
12 CCTestSuite::CCTestSuite(int argc
, char** argv
)
13 : base::TestSuite(argc
, argv
) {}
15 CCTestSuite::~CCTestSuite() {}
17 void CCTestSuite::Initialize() {
18 base::TestSuite::Initialize();
19 RegisterPathProvider();
20 message_loop_
.reset(new MessageLoop
);
23 void CCTestSuite::Shutdown() {
24 message_loop_
.reset();
26 base::TestSuite::Shutdown();