blob: 5e466ae11a382db4ba60fbe92169a7ef14f09f25 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// 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_test_case_app_interface.h"
#import "base/mac/foundation_util.h"
#import "ios/showcase/core/app_delegate.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
@implementation ShowcaseTestCaseAppInterface
+ (void)setupUI {
AppDelegate* delegate = base::mac::ObjCCastStrict<AppDelegate>(
[UIApplication sharedApplication].delegate);
[delegate setupUI];
}
@end