summaryrefslogtreecommitdiff
path: root/platform/ios/Integration Tests/MGLStyleURLIntegrationTest.m
blob: f9217bae5fc365ac935dcfc2bb4e0ea9092ffbc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#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