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

Unified Diff: ios/chrome/browser/ui/bubble/bubble_view_controller_unittest.mm

Issue 2964233002: [ios] BubbleViewController and BubbleView stubs. (Closed)
Patch Set: Add initial values for enums Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/browser/ui/bubble/bubble_view_controller.mm ('k') | ios/chrome/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/bubble/bubble_view_controller_unittest.mm
diff --git a/ios/chrome/browser/ui/bubble/bubble_view_controller_unittest.mm b/ios/chrome/browser/ui/bubble/bubble_view_controller_unittest.mm
new file mode 100644
index 0000000000000000000000000000000000000000..f5dc9f95e1bcc455df5945a4c8125c8f1c0f698f
--- /dev/null
+++ b/ios/chrome/browser/ui/bubble/bubble_view_controller_unittest.mm
@@ -0,0 +1,30 @@
+// Copyright 2017 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 "ios/chrome/browser/ui/bubble/bubble_view_controller.h"
+
+#include "base/logging.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "testing/platform_test.h"
+
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
+// Fixture to test BubbleViewController.
+class BubbleViewControllerTest : public PlatformTest {};
+
+// Tests the bubble's intrinsic content size given short text.
+TEST_F(BubbleViewControllerTest, BubbleSizeShortText) {}
+
+// Tests that the bubble accommodates text that exceeds the maximum bubble width
+// by displaying the text on multiple lines.
+TEST_F(BubbleViewControllerTest, BubbleSizeMultipleLineText) {}
+
+// Tests that the bubble attaches to the UI element when the layout is flipped
+// for RTL languages.
+TEST_F(BubbleViewControllerTest, RTL) {}
+
+// Tests that the accessibility label matches the display text.
+TEST_F(BubbleViewControllerTest, Accessibility) {}
« no previous file with comments | « ios/chrome/browser/ui/bubble/bubble_view_controller.mm ('k') | ios/chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698