summaryrefslogtreecommitdiff
path: root/platform/ios/Integration Tests/MGLStyleURLIntegrationTest.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/Integration Tests/MGLStyleURLIntegrationTest.m')
-rw-r--r--platform/ios/Integration Tests/MGLStyleURLIntegrationTest.m42
1 files changed, 0 insertions, 42 deletions
diff --git a/platform/ios/Integration Tests/MGLStyleURLIntegrationTest.m b/platform/ios/Integration Tests/MGLStyleURLIntegrationTest.m
deleted file mode 100644
index f9217bae5f..0000000000
--- a/platform/ios/Integration Tests/MGLStyleURLIntegrationTest.m
+++ /dev/null
@@ -1,42 +0,0 @@
-#import "MGLMapViewIntegrationTest.h"
-
-@interface MGLStyleURLIntegrationTest : MGLMapViewIntegrationTest
-@end
-
-@implementation MGLStyleURLIntegrationTest
-
-- (void)internalTestWithStyleSelector:(SEL)selector {
- if (![self validAccessToken]) {
- return;
- }
-
- self.mapView.styleURL = [MGLStyle performSelector:selector];
- [self waitForMapViewToFinishLoadingStyleWithTimeout:5];
-}
-
-
-- (void)testLoadingStreetsStyleURL {
- [self internalTestWithStyleSelector:@selector(streetsStyleURL)];
-}
-
-- (void)testLoadingOutdoorsStyleURL {
- [self internalTestWithStyleSelector:@selector(outdoorsStyleURL)];
-}
-
-- (void)testLoadingLightStyleURL {
- [self internalTestWithStyleSelector:@selector(lightStyleURL)];
-}
-
-- (void)testLoadingDarkStyleURL {
- [self internalTestWithStyleSelector:@selector(darkStyleURL)];
-}
-
-- (void)testLoadingSatelliteStyleURL {
- [self internalTestWithStyleSelector:@selector(satelliteStyleURL)];
-}
-
-- (void)testLoadingSatelliteStreetsStyleURL {
- [self internalTestWithStyleSelector:@selector(satelliteStreetsStyleURL)];
-}
-
-@end