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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #import "ios/chrome/browser/ui/bubble/bubble_view_controller.h"
6
7 #include "base/logging.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9 #include "testing/platform_test.h"
10
11 #if !defined(__has_feature) || !__has_feature(objc_arc)
12 #error "This file requires ARC support."
13 #endif
14
15 // Fixture to test BubbleViewController.
16 class BubbleViewControllerTest : public PlatformTest {};
17
18 // Tests the bubble's intrinsic content size given short text.
19 TEST_F(BubbleViewControllerTest, BubbleSizeShortText) {}
20
21 // Tests that the bubble accommodates text that exceeds the maximum bubble width
22 // by displaying the text on multiple lines.
23 TEST_F(BubbleViewControllerTest, BubbleSizeMultipleLineText) {}
24
25 // Tests that the bubble attaches to the UI element when the layout is flipped
26 // for RTL languages.
27 TEST_F(BubbleViewControllerTest, RTL) {}
28
29 // Tests that the accessibility label matches the display text.
30 TEST_F(BubbleViewControllerTest, Accessibility) {}
OLDNEW
« 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