summaryrefslogtreecommitdiff
path: root/platform/darwin/test/MGLStyleLayerTests.m
diff options
context:
space:
mode:
authorJesse Bounds <jesse@rebounds.net>2016-12-02 13:03:05 -0800
committerJesse Bounds <jesse@rebounds.net>2016-12-02 13:03:05 -0800
commit2db31be8bc0130ac2f02bc2245b1ff21103e9baf (patch)
tree9deff83c96e201dc2e8b0938a0ace656828971a9 /platform/darwin/test/MGLStyleLayerTests.m
parent37026a14ff12fcf2fbad02b95fc7847908ce31d5 (diff)
downloadqtlocation-mapboxgl-2db31be8bc0130ac2f02bc2245b1ff21103e9baf.tar.gz
[ios, macos] Rename MGLMapViewTests back to MGLStyleLayerTests
Diffstat (limited to 'platform/darwin/test/MGLStyleLayerTests.m')
-rw-r--r--platform/darwin/test/MGLStyleLayerTests.m22
1 files changed, 22 insertions, 0 deletions
diff --git a/platform/darwin/test/MGLStyleLayerTests.m b/platform/darwin/test/MGLStyleLayerTests.m
new file mode 100644
index 0000000000..74c6b2f906
--- /dev/null
+++ b/platform/darwin/test/MGLStyleLayerTests.m
@@ -0,0 +1,22 @@
+#import "MGLStyleLayerTests.h"
+
+@implementation MGLStyleLayerTests
+
+- (void)setUp {
+ [super setUp];
+#if TARGET_OS_IPHONE
+ UIApplication *app = [UIApplication sharedApplication];
+ UIViewController *vc = [[UIViewController alloc] init];
+ app.keyWindow.rootViewController = vc;
+ [vc view]; // Force load xib
+ _mapView = [[MGLMapView alloc] initWithFrame:CGRectMake(0, 0, 256, 256)];
+ [vc.view addSubview:_mapView];
+ _mapView.delegate = self;
+#else
+ [MGLAccountManager setAccessToken:@"pk.feedcafedeadbeefbadebede"];
+ NSWindowController *windowController = [[NSWindowController alloc] initWithWindowNibName:@"MGLStyleLayerTests" owner:self];
+ [windowController showWindow:nil];
+#endif
+}
+
+@end