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 |