summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJason Wray <jason@kulturny.com>2015-05-21 03:13:55 -0700
committerJason Wray <jason@kulturny.com>2015-05-21 03:13:55 -0700
commitdfd6ff00a239ef7c4762346edf798aa5dfb7bf3f (patch)
treee1c177d30f4cb42e9924c1124a15018f7f408746 /test
parenta91b1d73e2db0600372ae00ca9211aa03a89dca2 (diff)
downloadqtlocation-mapboxgl-dfd6ff00a239ef7c4762346edf798aa5dfb7bf3f.tar.gz
Update tests for access token changes
Diffstat (limited to 'test')
-rw-r--r--test/ios/App-Info.plist4
-rw-r--r--test/ios/MGLTAppDelegate.m2
-rw-r--r--test/ios/MGLTViewController.m3
-rw-r--r--test/ios/MetricsTests.m6
4 files changed, 5 insertions, 10 deletions
diff --git a/test/ios/App-Info.plist b/test/ios/App-Info.plist
index d7e9d5c462..effff2063e 100644
--- a/test/ios/App-Info.plist
+++ b/test/ios/App-Info.plist
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>MGLMapboxAccessToken</key>
+ <string>pk.eyJ1IjoianVzdGluIiwiYSI6Ik9RX3RRQzAifQ.dmOg_BAp1ywuDZMM7YsXRg</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
@@ -34,6 +36,8 @@
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
+ <key>MGLMapboxMetricsEnabledSettingShownInApp</key>
+ <true/>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
diff --git a/test/ios/MGLTAppDelegate.m b/test/ios/MGLTAppDelegate.m
index bbd67821fe..3fa68b6da1 100644
--- a/test/ios/MGLTAppDelegate.m
+++ b/test/ios/MGLTAppDelegate.m
@@ -13,8 +13,6 @@
wrapper.toolbarHidden = YES;
[self.window makeKeyAndVisible];
- [MGLAccountManager setMapboxMetricsEnabledSettingShownInApp:YES]; // a lie, but a convenient one
-
return YES;
}
diff --git a/test/ios/MGLTViewController.m b/test/ios/MGLTViewController.m
index bdce2202d7..e3357616f8 100644
--- a/test/ios/MGLTViewController.m
+++ b/test/ios/MGLTViewController.m
@@ -10,8 +10,7 @@
{
[super viewDidLoad];
- _mapView = [[MGLMapView alloc] initWithFrame:self.view.bounds
- accessToken:@"pk.eyJ1IjoianVzdGluIiwiYSI6Ik9RX3RRQzAifQ.dmOg_BAp1ywuDZMM7YsXRg"];
+ _mapView = [[MGLMapView alloc] initWithFrame:self.view.bounds];
_mapView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self.view addSubview:_mapView];
diff --git a/test/ios/MetricsTests.m b/test/ios/MetricsTests.m
index 5b1a7956ea..758cf1f5be 100644
--- a/test/ios/MetricsTests.m
+++ b/test/ios/MetricsTests.m
@@ -60,12 +60,6 @@
XCTAssertEqualObjects([[MGLMapboxEvents sharedManager] appBundleId], @"com.mapbox.Mapbox-GL-Tests");
}
-- (void)testTokenSetViaMapView {
- [tester.mapView setAccessToken:@"test_token"];
-
- XCTAssertEqualObjects([[MGLMapboxEvents sharedManager] token], @"test_token");
-}
-
- (void)testResumeMetricsCollection {
[MGLMapboxEvents resumeMetricsCollection];