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

Side by Side Diff: chrome/browser/ui/cocoa/image_button_cell_unittest.mm

Issue 2565813002: Create c/b/ui/cocoa/test and move test files to there (Closed)
Patch Set: Rebase Created 4 years 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/mac/scoped_nsobject.h" 5 #include "base/mac/scoped_nsobject.h"
6 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
7 #import "chrome/browser/ui/cocoa/image_button_cell.h" 6 #import "chrome/browser/ui/cocoa/image_button_cell.h"
7 #import "chrome/browser/ui/cocoa/test/cocoa_test_helper.h"
8 #include "chrome/grit/theme_resources.h" 8 #include "chrome/grit/theme_resources.h"
9 9
10 namespace { 10 namespace {
11 11
12 class ImageButtonCellTest : public CocoaTest { 12 class ImageButtonCellTest : public CocoaTest {
13 public: 13 public:
14 ImageButtonCellTest() { 14 ImageButtonCellTest() {
15 NSRect frame = NSMakeRect(0, 0, 50, 30); 15 NSRect frame = NSMakeRect(0, 0, 50, 30);
16 base::scoped_nsobject<NSButton> view( 16 base::scoped_nsobject<NSButton> view(
17 [[NSButton alloc] initWithFrame:frame]); 17 [[NSButton alloc] initWithFrame:frame]);
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 forButtonState:image_button_cell::kDefaultState]; 83 forButtonState:image_button_cell::kDefaultState];
84 [view_ display]; 84 [view_ display];
85 EXPECT_FALSE([view_ needsDisplay]); 85 EXPECT_FALSE([view_ needsDisplay]);
86 86
87 [[view_ cell] setImageID:IDR_FORWARD_D 87 [[view_ cell] setImageID:IDR_FORWARD_D
88 forButtonState:image_button_cell::kDefaultState]; 88 forButtonState:image_button_cell::kDefaultState];
89 EXPECT_TRUE([view_ needsDisplay]); 89 EXPECT_TRUE([view_ needsDisplay]);
90 } 90 }
91 91
92 } // namespace 92 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/hung_renderer_controller_unittest.mm ('k') | chrome/browser/ui/cocoa/info_bubble_view_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698