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

Side by Side Diff: test/ios/xctests/AppTests/AppTests.m

Issue 1410113002: Make ninja work with XCTests for iOS. (Closed) Base URL: https://chromium.googlesource.com/external/gyp@master
Patch Set: Created 5 years, 2 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 #import <UIKit/UIKit.h>
2 #import <XCTest/XCTest.h>
3
4 @interface AppTests : XCTestCase
5
6 @end
7
8 @implementation AppTests
9
10 - (void)setUp {
11 [super setUp];
12 }
13
14 - (void)tearDown {
15 [super tearDown];
16 }
17
18 - (void)testExample {
19 XCTAssert(YES, @"Pass");
20 }
21
22 - (void)testPerformanceExample {
23 [self measureBlock:^{
24 }];
25 }
26
27 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698