summaryrefslogtreecommitdiff
path: root/platform/ios/Integration Tests/MGLStyleURLIntegrationTest.m
blob: 22de4c6aa5f3bf8cf3f2c4feb52c2b49a0bcda7e (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
#import "MGLMapViewIntegrationTest.h"

@interface MGLStyleURLIntegrationTest : MGLMapViewIntegrationTest
@end

@implementation MGLStyleURLIntegrationTest

- (void)internalTestWithStyleSelector:(SEL)selector {
    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