OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 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. |
| 4 |
| 5 #include "chrome/browser/ui/app_list/app_list_controller.h" |
| 6 #include "chrome/test/base/in_process_browser_test.h" |
| 7 |
| 8 // Browser Test for AppListController that runs on all platforms supporting |
| 9 // app_list. |
| 10 class AppListControllerBrowserTest : public InProcessBrowserTest { |
| 11 public: |
| 12 AppListControllerBrowserTest() { |
| 13 app_list_controller::InitAppList(); |
| 14 } |
| 15 |
| 16 private: |
| 17 DISALLOW_COPY_AND_ASSIGN(AppListControllerBrowserTest); |
| 18 }; |
| 19 |
| 20 // Test showing the app list, followed by browser close. |
| 21 IN_PROC_BROWSER_TEST_F(AppListControllerBrowserTest, ShowAndShutdown) { |
| 22 app_list_controller::ShowAppList(); |
| 23 } |
OLD | NEW |