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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: test/ios/xctests/AppTests/AppTests.m
diff --git a/test/ios/xctests/AppTests/AppTests.m b/test/ios/xctests/AppTests/AppTests.m
new file mode 100644
index 0000000000000000000000000000000000000000..2786ff78469e9fcbbe5fd3360c90d323266fa7a2
--- /dev/null
+++ b/test/ios/xctests/AppTests/AppTests.m
@@ -0,0 +1,27 @@
+#import <UIKit/UIKit.h>
+#import <XCTest/XCTest.h>
+
+@interface AppTests : XCTestCase
+
+@end
+
+@implementation AppTests
+
+- (void)setUp {
+ [super setUp];
+}
+
+- (void)tearDown {
+ [super tearDown];
+}
+
+- (void)testExample {
+ XCTAssert(YES, @"Pass");
+}
+
+- (void)testPerformanceExample {
+ [self measureBlock:^{
+ }];
+}
+
+@end

Powered by Google App Engine
This is Rietveld 408576698