Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: chrome/browser/ui/toolbar/encoding_menu_controller_unittest.cc

Issue 7616019: Reorganize chrome/test, part #9 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/toolbar/encoding_menu_controller.h" 5 #include "chrome/browser/ui/toolbar/encoding_menu_controller.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "chrome/app/chrome_command_ids.h" 10 #include "chrome/app/chrome_command_ids.h"
11 #include "chrome/browser/prefs/pref_service.h" 11 #include "chrome/browser/prefs/pref_service.h"
12 #include "chrome/browser/profiles/profile.h" 12 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/common/pref_names.h" 13 #include "chrome/common/pref_names.h"
14 #include "chrome/test/base/testing_browser_process_test.h"
14 #include "chrome/test/base/testing_profile.h" 15 #include "chrome/test/base/testing_profile.h"
15 #include "chrome/test/testing_browser_process_test.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 17
18 class EncodingMenuControllerTest : public TestingBrowserProcessTest { 18 class EncodingMenuControllerTest : public TestingBrowserProcessTest {
19 }; 19 };
20 20
21 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) { 21 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) {
22 EncodingMenuController controller; 22 EncodingMenuController controller;
23 23
24 // Check some bogus ids to make sure they're never valid. 24 // Check some bogus ids to make sure they're never valid.
25 ASSERT_FALSE(controller.DoesCommandBelongToEncodingMenu(0)); 25 ASSERT_FALSE(controller.DoesCommandBelongToEncodingMenu(0));
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 encoding, 84 encoding,
85 valid_encodings[i]); 85 valid_encodings[i]);
86 // Only one item in the encoding menu can be selected at a time. 86 // Only one item in the encoding menu can be selected at a time.
87 ASSERT_FALSE(on && encoding_is_enabled); 87 ASSERT_FALSE(on && encoding_is_enabled);
88 encoding_is_enabled |= on; 88 encoding_is_enabled |= on;
89 } 89 }
90 90
91 // Make sure at least one encoding is enabled. 91 // Make sure at least one encoding is enabled.
92 ASSERT_TRUE(encoding_is_enabled); 92 ASSERT_TRUE(encoding_is_enabled);
93 } 93 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/shell_dialogs_unittest.cc ('k') | chrome/browser/ui/views/accessibility_event_router_views_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698