blob: 585718d8783b1603bc4a11149eeb42b2aece20cb [file] [log] [blame]
// 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/showcase/test/showcase_eg_utils.h"
#import "ios/showcase/test/showcase_test_case.h"
#import "ios/testing/earl_grey/earl_grey_test.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
namespace {
using ::showcase_utils::Open;
using ::showcase_utils::Close;
}
// Tests for the BubbleViewController.
@interface SCBubbleTestCase : ShowcaseTestCase
@end
@implementation SCBubbleTestCase
// Tests that the accessibility label matches the display text.
- (void)testTextBadgeAccessibilityLabel {
Open(@"Bubble");
Close();
}
@end