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

Side by Side Diff: ios/chrome/app/safe_mode/safe_mode_coordinator_unittest.mm

Issue 2580363002: Upstream Chrome on iOS source code [1/11]. (Closed)
Patch Set: Created 4 years 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 2016 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/app/safe_mode/safe_mode_coordinator.h"
6
7 #include <UIKit/UIKit.h>
8
9 #include "base/mac/scoped_nsobject.h"
10 #include "testing/gtest_mac.h"
11
12 TEST(SafeModeCoordinatorTest, RootVC) {
13 // Expect that starting a safe mode coordinator will populate the root view
14 // controller.
15 base::scoped_nsobject<UIWindow> window(
16 [[UIWindow alloc] initWithFrame:CGRectMake(0, 0, 100, 100)]);
17 EXPECT_TRUE([window rootViewController] == nil);
18 base::scoped_nsobject<SafeModeCoordinator> safe_mode_coordinator(
19 [[SafeModeCoordinator alloc] initWithWindow:window]);
20 [safe_mode_coordinator start];
21 EXPECT_FALSE([window rootViewController] == nil);
22 }
OLDNEW
« no previous file with comments | « ios/chrome/app/safe_mode/safe_mode_coordinator.mm ('k') | ios/chrome/app/safe_mode/safe_mode_egtest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698