summaryrefslogtreecommitdiff
path: root/platform/ios/demo/ExamplesTests/ExamplesTests.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/demo/ExamplesTests/ExamplesTests.m')
-rw-r--r--platform/ios/demo/ExamplesTests/ExamplesTests.m38
1 files changed, 38 insertions, 0 deletions
diff --git a/platform/ios/demo/ExamplesTests/ExamplesTests.m b/platform/ios/demo/ExamplesTests/ExamplesTests.m
new file mode 100644
index 0000000000..4d7d222b3d
--- /dev/null
+++ b/platform/ios/demo/ExamplesTests/ExamplesTests.m
@@ -0,0 +1,38 @@
+//
+// ExamplesTests.m
+// ExamplesTests
+//
+// Created by Jason Wray on 1/26/16.
+// Copyright © 2016 Mapbox. All rights reserved.
+//
+
+#import <XCTest/XCTest.h>
+
+@interface ExamplesTests : XCTestCase
+
+@end
+@implementation ExamplesTests
+
+- (void)setUp {
+ [super setUp];
+ // Put setup code here. This method is called before the invocation of each test method in the class.
+}
+
+- (void)tearDown {
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
+ [super tearDown];
+}
+
+- (void)testExample {
+ // This is an example of a functional test case.
+ // Use XCTAssert and related functions to verify your tests produce the correct results.
+}
+
+- (void)testPerformanceExample {
+ // This is an example of a performance test case.
+ [self measureBlock:^{
+ // Put the code you want to measure the time of here.
+ }];
+}
+
+@end