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

Side by Side Diff: chrome/browser/app_controller_mac_unittest.mm

Issue 7744039: Switch ChromeTestSuite to the same convention as ContentTestSuite: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixing 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #import <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 6
7 #include "base/memory/scoped_nsobject.h" 7 #include "base/memory/scoped_nsobject.h"
8 #include "chrome/app/chrome_command_ids.h" 8 #include "chrome/app/chrome_command_ids.h"
9 #import "chrome/browser/app_controller_mac.h" 9 #import "chrome/browser/app_controller_mac.h"
10 #include "chrome/test/base/testing_browser_process.h"
11 #include "testing/platform_test.h" 10 #include "testing/platform_test.h"
12 11
13 class AppControllerTest : public PlatformTest { 12 class AppControllerTest : public PlatformTest {
14 private:
15 ScopedTestingBrowserProcess browser_process_;
16 }; 13 };
17 14
18 TEST_F(AppControllerTest, DockMenu) { 15 TEST_F(AppControllerTest, DockMenu) {
19 scoped_nsobject<AppController> ac([[AppController alloc] init]); 16 scoped_nsobject<AppController> ac([[AppController alloc] init]);
20 NSMenu* menu = [ac applicationDockMenu:NSApp]; 17 NSMenu* menu = [ac applicationDockMenu:NSApp];
21 NSMenuItem* item; 18 NSMenuItem* item;
22 19
23 EXPECT_TRUE(menu); 20 EXPECT_TRUE(menu);
24 EXPECT_NE(-1, [menu indexOfItemWithTag:IDC_NEW_WINDOW]); 21 EXPECT_NE(-1, [menu indexOfItemWithTag:IDC_NEW_WINDOW]);
25 EXPECT_NE(-1, [menu indexOfItemWithTag:IDC_NEW_INCOGNITO_WINDOW]); 22 EXPECT_NE(-1, [menu indexOfItemWithTag:IDC_NEW_INCOGNITO_WINDOW]);
26 for (item in [menu itemArray]) { 23 for (item in [menu itemArray]) {
27 EXPECT_EQ(ac.get(), [item target]); 24 EXPECT_EQ(ac.get(), [item target]);
28 EXPECT_EQ(@selector(commandFromDock:), [item action]); 25 EXPECT_EQ(@selector(commandFromDock:), [item action]);
29 } 26 }
30 } 27 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/autocomplete/autocomplete_edit_unittest.cc » ('j') | chrome/test/base/chrome_test_suite.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698