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

Side by Side Diff: ios/showcase/root/sc_root_egtest.mm

Issue 2800313002: [ios] RootCoordinator and view controller. (Closed)
Patch Set: Unittests, showcase, and clean up. Created 3 years, 8 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
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 <EarlGrey/EarlGrey.h>
6
7 #import "ios/showcase/test/showcase_eg_utils.h"
8 #import "ios/showcase/test/showcase_test_case.h"
9
10 #if !defined(__has_feature) || !__has_feature(objc_arc)
11 #error "This file requires ARC support."
12 #endif
13
14 // Tests for the root container view controller.
15 @interface SCRootTestCase : ShowcaseTestCase
16 @end
17
18 @implementation SCRootTestCase
19
20 // Tests launching RootContainerViewController.
21 - (void)testLaunch {
22 showcase_utils::Open(@"RootContainerViewController");
23 showcase_utils::Close();
24 }
25
26 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698