| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/basictypes.h" | 5 #include "base/basictypes.h" |
| 6 #include "base/bind.h" | 6 #include "base/bind.h" |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/test/launcher/unit_test_launcher.h" | 9 #include "base/test/launcher/unit_test_launcher.h" |
| 10 #include "base/test/test_suite.h" | 10 #include "base/test/test_suite.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 #include "ui/base/resource/resource_bundle.h" | 12 #include "ui/base/resource/resource_bundle.h" |
| 13 #include "ui/base/ui_base_paths.h" | 13 #include "ui/base/ui_base_paths.h" |
| 14 | 14 |
| 15 #if !defined(OS_MACOSX) | 15 #if defined(TOOLKIT_VIEWS) |
| 16 #include "ui/gl/gl_surface.h" | 16 #include "ui/gl/gl_surface.h" |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 namespace { | 19 namespace { |
| 20 | 20 |
| 21 class AppListTestSuite : public base::TestSuite { | 21 class AppListTestSuite : public base::TestSuite { |
| 22 public: | 22 public: |
| 23 AppListTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {} | 23 AppListTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {} |
| 24 | 24 |
| 25 protected: | 25 protected: |
| 26 virtual void Initialize() override { | 26 virtual void Initialize() override { |
| 27 #if !defined(OS_MACOSX) | |
| 28 gfx::GLSurface::InitializeOneOffForTests(); | 27 gfx::GLSurface::InitializeOneOffForTests(); |
| 29 #endif | |
| 30 base::TestSuite::Initialize(); | 28 base::TestSuite::Initialize(); |
| 31 ui::RegisterPathProvider(); | 29 ui::RegisterPathProvider(); |
| 32 | 30 |
| 33 base::FilePath ui_test_pak_path; | 31 base::FilePath ui_test_pak_path; |
| 34 ASSERT_TRUE(PathService::Get(ui::UI_TEST_PAK, &ui_test_pak_path)); | 32 ASSERT_TRUE(PathService::Get(ui::UI_TEST_PAK, &ui_test_pak_path)); |
| 35 ui::ResourceBundle::InitSharedInstanceWithPakPath(ui_test_pak_path); | 33 ui::ResourceBundle::InitSharedInstanceWithPakPath(ui_test_pak_path); |
| 36 } | 34 } |
| 37 | 35 |
| 38 virtual void Shutdown() override { | 36 virtual void Shutdown() override { |
| 39 ui::ResourceBundle::CleanupSharedInstance(); | 37 ui::ResourceBundle::CleanupSharedInstance(); |
| 40 base::TestSuite::Shutdown(); | 38 base::TestSuite::Shutdown(); |
| 41 } | 39 } |
| 42 | 40 |
| 43 private: | 41 private: |
| 44 DISALLOW_COPY_AND_ASSIGN(AppListTestSuite); | 42 DISALLOW_COPY_AND_ASSIGN(AppListTestSuite); |
| 45 }; | 43 }; |
| 46 | 44 |
| 47 } // namespace | 45 } // namespace |
| 48 | 46 |
| 49 int main(int argc, char** argv) { | 47 int main(int argc, char** argv) { |
| 50 AppListTestSuite test_suite(argc, argv); | 48 AppListTestSuite test_suite(argc, argv); |
| 51 | 49 |
| 52 return base::LaunchUnitTests( | 50 return base::LaunchUnitTests( |
| 53 argc, | 51 argc, |
| 54 argv, | 52 argv, |
| 55 base::Bind(&AppListTestSuite::Run, base::Unretained(&test_suite))); | 53 base::Bind(&AppListTestSuite::Run, base::Unretained(&test_suite))); |
| 56 } | 54 } |
| OLD | NEW |