forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent_test_suite.h
39 lines (30 loc) · 958 Bytes
/
content_test_suite.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// 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.
#ifndef CONTENT_TEST_CONTENT_TEST_SUITE_H_
#define CONTENT_TEST_CONTENT_TEST_SUITE_H_
#pragma once
#include "base/compiler_specific.h"
#include "base/test/test_suite.h"
#include "base/win/scoped_com_initializer.h"
#if defined(USE_AURA)
namespace aura {
namespace test {
class TestAuraInitializer;
} // namespace test
} // namespace aura
#endif
class ContentTestSuite : public base::TestSuite {
public:
ContentTestSuite(int argc, char** argv);
virtual ~ContentTestSuite();
protected:
virtual void Initialize() OVERRIDE;
private:
base::win::ScopedCOMInitializer com_initializer_;
#if defined(USE_AURA)
scoped_ptr<aura::test::TestAuraInitializer> aura_initializer_;
#endif
DISALLOW_COPY_AND_ASSIGN(ContentTestSuite);
};
#endif // CONTENT_TEST_CONTENT_TEST_SUITE_H_