Index: ui/message_center/cocoa/status_item_view_unittest.mm |
diff --git a/ui/message_center/cocoa/status_item_view_unittest.mm b/ui/message_center/cocoa/status_item_view_unittest.mm |
deleted file mode 100644 |
index 1e68770c0566cf806529002e0249fb42fd3596a7..0000000000000000000000000000000000000000 |
--- a/ui/message_center/cocoa/status_item_view_unittest.mm |
+++ /dev/null |
@@ -1,88 +0,0 @@ |
-// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#import "ui/message_center/cocoa/status_item_view.h" |
- |
-#include "base/mac/scoped_nsobject.h" |
-#import "ui/gfx/test/ui_cocoa_test_helper.h" |
- |
-class StatusItemViewTest : public ui::CocoaTest { |
- public: |
- StatusItemViewTest() |
- : view_([[MCStatusItemView alloc] init]) { |
- } |
- |
- void SetUp() override { |
- ui::CocoaTest::SetUp(); |
- [[test_window() contentView] addSubview:view_]; |
- } |
- |
- void TearDown() override { |
- [view_ removeItem]; |
- ui::CocoaTest::TearDown(); |
- } |
- |
- protected: |
- base::scoped_nsobject<MCStatusItemView> view_; |
-}; |
- |
-// These tests are like TEST_VIEW() but set some of the properties. |
- |
-TEST_F(StatusItemViewTest, Callback) { |
- __block BOOL got_callback = NO; |
- [view_ setCallback:^{ |
- got_callback = YES; |
- }]; |
- [view_ mouseDown:nil]; |
- EXPECT_TRUE(got_callback); |
- [view_ mouseUp:nil]; |
- |
- got_callback = NO; |
- [view_ rightMouseDown:nil]; |
- EXPECT_TRUE(got_callback); |
- [view_ rightMouseUp:nil]; |
- |
- got_callback = NO; |
- [view_ otherMouseDown:nil]; |
- EXPECT_TRUE(got_callback); |
- [view_ otherMouseUp:nil]; |
-} |
- |
-TEST_F(StatusItemViewTest, UnreadCount) { |
- CGFloat initial_width = NSWidth([view_ frame]); |
- |
- [view_ setUnreadCount:2 withQuietMode:NO]; |
- [view_ display]; |
- EXPECT_EQ(NSWidth([view_ frame]), initial_width); |
- |
- [view_ setUnreadCount:0 withQuietMode:NO]; |
- [view_ display]; |
- EXPECT_EQ(NSWidth([view_ frame]), initial_width); |
- |
- [view_ setUnreadCount:1000 withQuietMode:YES]; |
- [view_ display]; |
- EXPECT_EQ(NSWidth([view_ frame]), initial_width); |
- |
- [view_ setUnreadCount:0 withQuietMode:YES]; |
- [view_ display]; |
- EXPECT_EQ(NSWidth([view_ frame]), initial_width); |
-} |
- |
-TEST_F(StatusItemViewTest, Highlight) { |
- [view_ setHighlight:YES]; |
- [view_ display]; |
- [view_ setHighlight:NO]; |
- [view_ display]; |
-} |
- |
-TEST_F(StatusItemViewTest, HighlightAndMouseEvent) { |
- [view_ mouseDown:nil]; |
- [view_ display]; |
- [view_ setHighlight:YES]; |
- [view_ display]; |
- [view_ mouseUp:nil]; |
- [view_ display]; |
- [view_ setHighlight:NO]; |
- [view_ display]; |
-} |