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

Side by Side Diff: ios/web/shell/test/earl_grey/web_shell_test_case.mm

Issue 2898733003: Split up ios/web:test_support. (Closed)
Patch Set: don't break downstream clients Created 3 years, 6 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/web/shell/test/context_menu_egtest.mm ('k') | ios/web/shell/test/meta_tags_egtest.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "ios/web/shell/test/earl_grey/web_shell_test_case.h" 5 #import "ios/web/shell/test/earl_grey/web_shell_test_case.h"
6 6
7 #import <EarlGrey/EarlGrey.h> 7 #import <EarlGrey/EarlGrey.h>
8 8
9 #import "ios/web/public/test/http_server.h" 9 #import "ios/web/public/test/http_server/http_server.h"
10 #import "ios/web/shell/test/earl_grey/shell_matchers.h" 10 #import "ios/web/shell/test/earl_grey/shell_matchers.h"
11 11
12 #if !defined(__has_feature) || !__has_feature(objc_arc) 12 #if !defined(__has_feature) || !__has_feature(objc_arc)
13 #error "This file requires ARC support." 13 #error "This file requires ARC support."
14 #endif 14 #endif
15 15
16 using web::test::HttpServer; 16 using web::test::HttpServer;
17 using web::WebViewContainingText; 17 using web::WebViewContainingText;
18 18
19 @implementation WebShellTestCase 19 @implementation WebShellTestCase
(...skipping 28 matching lines...) Expand all
48 [super tearDown]; 48 [super tearDown];
49 } 49 }
50 50
51 // Tear down called after each test. 51 // Tear down called after each test.
52 - (void)tearDown { 52 - (void)tearDown {
53 HttpServer::GetSharedInstance().RemoveAllResponseProviders(); 53 HttpServer::GetSharedInstance().RemoveAllResponseProviders();
54 [super tearDown]; 54 [super tearDown];
55 } 55 }
56 56
57 @end 57 @end
OLDNEW
« no previous file with comments | « ios/web/shell/test/context_menu_egtest.mm ('k') | ios/web/shell/test/meta_tags_egtest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698