summaryrefslogtreecommitdiff
path: root/platform/darwin/test/MGLStyleValueTests.m
blob: fe6096584d623e9816a1a0b9563f7a8938bdc9ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import <XCTest/XCTest.h>
#import <Mapbox/Mapbox.h>

@interface MGLStyleValueTests : XCTestCase
@end

@implementation MGLStyleValueTests

- (void)testStoplessFunction {
    XCTAssertThrowsSpecificNamed([MGLStyleValue<NSNumber *> valueWithStops:@{}], NSException, NSInvalidArgumentException, @"Stopless function should raise an exception");
}

@end