Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #import "chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.h" | 5 #import "chrome/browser/ui/cocoa/omnibox/omnibox_popup_cell.h" |
| 6 | 6 |
| 7 #include "base/mac/scoped_nsobject.h" | 7 #include "base/mac/scoped_nsobject.h" |
| 8 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" | 8 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" |
| 9 | 9 |
| 10 namespace { | 10 namespace { |
| 11 | 11 |
| 12 class OmniboxPopupCellTest : public CocoaTest { | 12 class OmniboxPopupCellTest : public CocoaTest { |
| 13 public: | 13 public: |
| 14 OmniboxPopupCellTest() { | 14 OmniboxPopupCellTest() { |
| 15 } | 15 } |
| 16 | 16 |
| 17 void SetUp() override { | 17 void SetUp() override { |
| 18 CocoaTest::SetUp(); | 18 CocoaTest::SetUp(); |
| 19 cell_.reset([[OmniboxPopupCell alloc] initTextCell:@""]); | 19 cell_.reset([[OmniboxPopupCell alloc] initTextCell:@""]); |
| 20 button_.reset([[NSButton alloc] initWithFrame:NSMakeRect(0, 0, 200, 20)]); | 20 control_.reset([[NSControl alloc] initWithFrame:NSMakeRect(0, 0, 200, 20)]); |
| 21 [button_ setCell:cell_]; | 21 [control_ setCell:cell_]; |
| 22 [[test_window() contentView] addSubview:button_]; | 22 [[test_window() contentView] addSubview:control_]; |
|
Scott Hess - ex-Googler
2015/05/07 22:35:42
Feel free to embiggen these tests. At some point
dschuyler
2015/05/13 01:41:11
Acknowledged.
| |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 protected: | 25 protected: |
| 26 base::scoped_nsobject<OmniboxPopupCell> cell_; | 26 base::scoped_nsobject<OmniboxPopupCell> cell_; |
| 27 base::scoped_nsobject<NSButton> button_; | 27 base::scoped_nsobject<NSControl> control_; |
| 28 | 28 |
| 29 private: | 29 private: |
| 30 DISALLOW_COPY_AND_ASSIGN(OmniboxPopupCellTest); | 30 DISALLOW_COPY_AND_ASSIGN(OmniboxPopupCellTest); |
| 31 }; | 31 }; |
| 32 | 32 |
| 33 TEST_VIEW(OmniboxPopupCellTest, button_); | 33 TEST_VIEW(OmniboxPopupCellTest, control_); |
| 34 | 34 |
| 35 TEST_F(OmniboxPopupCellTest, Image) { | 35 TEST_F(OmniboxPopupCellTest, Image) { |
| 36 [cell_ setImage:[NSImage imageNamed:NSImageNameInfo]]; | 36 [cell_ setImage:[NSImage imageNamed:NSImageNameInfo]]; |
| 37 [button_ display]; | 37 [control_ display]; |
| 38 } | 38 } |
| 39 | 39 |
| 40 TEST_F(OmniboxPopupCellTest, Title) { | 40 TEST_F(OmniboxPopupCellTest, Title) { |
| 41 base::scoped_nsobject<NSAttributedString> text([[NSAttributedString alloc] | 41 base::scoped_nsobject<NSAttributedString> text([[NSAttributedString alloc] |
| 42 initWithString:@"The quick brown fox jumps over the lazy dog."]); | 42 initWithString:@"The quick brown fox jumps over the lazy dog."]); |
| 43 [cell_ setAttributedTitle:text]; | 43 [cell_ setAttributedTitle:text]; |
| 44 [button_ display]; | 44 [control_ display]; |
| 45 } | 45 } |
| 46 | 46 |
| 47 } // namespace | 47 } // namespace |
| OLD | NEW |