OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/bind.h" | 5 #include "base/bind.h" |
6 #include "base/macros.h" | 6 #include "base/macros.h" |
7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
8 #include "base/test/launcher/unit_test_launcher.h" | 8 #include "base/test/launcher/unit_test_launcher.h" |
9 #include "base/test/test_suite.h" | 9 #include "base/test/test_suite.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
11 #include "ui/base/resource/resource_bundle.h" | 11 #include "ui/base/resource/resource_bundle.h" |
12 #include "ui/base/ui_base_paths.h" | 12 #include "ui/base/ui_base_paths.h" |
13 #include "ui/gl/test/gl_surface_test_support.h" | 13 #include "ui/gl/test/gl_surface_test_support.h" |
14 | 14 |
15 namespace { | 15 namespace { |
16 | 16 |
17 class AppListShowerTestSuite : public base::TestSuite { | 17 class AppListPresenterTestSuite : public base::TestSuite { |
18 public: | 18 public: |
19 AppListShowerTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {} | 19 AppListPresenterTestSuite(int argc, char** argv) |
| 20 : base::TestSuite(argc, argv) {} |
20 | 21 |
21 protected: | 22 protected: |
22 void Initialize() override { | 23 void Initialize() override { |
23 gfx::GLSurfaceTestSupport::InitializeOneOff(); | 24 gfx::GLSurfaceTestSupport::InitializeOneOff(); |
24 base::TestSuite::Initialize(); | 25 base::TestSuite::Initialize(); |
25 ui::RegisterPathProvider(); | 26 ui::RegisterPathProvider(); |
26 | 27 |
27 base::FilePath ui_test_pak_path; | 28 base::FilePath ui_test_pak_path; |
28 ASSERT_TRUE(PathService::Get(ui::UI_TEST_PAK, &ui_test_pak_path)); | 29 ASSERT_TRUE(PathService::Get(ui::UI_TEST_PAK, &ui_test_pak_path)); |
29 ui::ResourceBundle::InitSharedInstanceWithPakPath(ui_test_pak_path); | 30 ui::ResourceBundle::InitSharedInstanceWithPakPath(ui_test_pak_path); |
30 } | 31 } |
31 | 32 |
32 void Shutdown() override { | 33 void Shutdown() override { |
33 ui::ResourceBundle::CleanupSharedInstance(); | 34 ui::ResourceBundle::CleanupSharedInstance(); |
34 base::TestSuite::Shutdown(); | 35 base::TestSuite::Shutdown(); |
35 } | 36 } |
36 | 37 |
37 private: | 38 private: |
38 DISALLOW_COPY_AND_ASSIGN(AppListShowerTestSuite); | 39 DISALLOW_COPY_AND_ASSIGN(AppListPresenterTestSuite); |
39 }; | 40 }; |
40 | 41 |
41 } // namespace | 42 } // namespace |
42 | 43 |
43 int main(int argc, char** argv) { | 44 int main(int argc, char** argv) { |
44 AppListShowerTestSuite test_suite(argc, argv); | 45 AppListPresenterTestSuite test_suite(argc, argv); |
45 | 46 |
46 return base::LaunchUnitTests( | 47 return base::LaunchUnitTests(argc, argv, |
47 argc, argv, | 48 base::Bind(&AppListPresenterTestSuite::Run, |
48 base::Bind(&AppListShowerTestSuite::Run, base::Unretained(&test_suite))); | 49 base::Unretained(&test_suite))); |
49 } | 50 } |
OLD | NEW |