| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 "chrome/browser/ui/cocoa/user_manager_mac.h" | 5 #include "chrome/browser/ui/cocoa/user_manager_mac.h" |
| 6 | 6 |
| 7 #include "base/run_loop.h" | 7 #include "base/run_loop.h" |
| 8 #include "chrome/browser/profiles/profile_window.h" | 8 #include "chrome/browser/profiles/profile_window.h" |
| 9 #include "chrome/test/base/browser_with_test_window_test.h" | 9 #include "chrome/test/base/browser_with_test_window_test.h" |
| 10 #include "chrome/test/base/testing_browser_process.h" | 10 #include "chrome/test/base/testing_browser_process.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 } | 32 } |
| 33 | 33 |
| 34 private: | 34 private: |
| 35 TestingProfileManager testing_profile_manager_; | 35 TestingProfileManager testing_profile_manager_; |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(UserManagerMacTest); | 37 DISALLOW_COPY_AND_ASSIGN(UserManagerMacTest); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 TEST_F(UserManagerMacTest, ShowUserManager) { | 40 TEST_F(UserManagerMacTest, ShowUserManager) { |
| 41 EXPECT_FALSE(UserManagerMac::IsShowing()); | 41 EXPECT_FALSE(UserManagerMac::IsShowing()); |
| 42 UserManagerMac::Show(base::FilePath()); | 42 UserManagerMac::Show(base::FilePath(), profiles::USER_MANAGER_NO_TUTORIAL); |
| 43 EXPECT_TRUE(UserManagerMac::IsShowing()); | 43 EXPECT_TRUE(UserManagerMac::IsShowing()); |
| 44 | 44 |
| 45 UserManagerMac::Hide(); | 45 UserManagerMac::Hide(); |
| 46 EXPECT_FALSE(UserManagerMac::IsShowing()); | 46 EXPECT_FALSE(UserManagerMac::IsShowing()); |
| 47 } | 47 } |
| OLD | NEW |