From ef99b108fe51d108e789a484acae1c6bc30464c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Minh=20Nguye=CC=82=CC=83n?= Date: Thu, 13 Apr 2017 00:31:54 -0700 Subject: [ios] Deleted unused source unit tests Deleted MGLSourceTests, which has been subsumed by MGLStyleTests and is no longer part of any test target. --- platform/ios/test/MGLSourceTests.m | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 platform/ios/test/MGLSourceTests.m (limited to 'platform') diff --git a/platform/ios/test/MGLSourceTests.m b/platform/ios/test/MGLSourceTests.m deleted file mode 100644 index 2e4942cbe9..0000000000 --- a/platform/ios/test/MGLSourceTests.m +++ /dev/null @@ -1,24 +0,0 @@ -#import "MGLMapViewTests.h" - -@interface MGLSourceTests : MGLMapViewTests - -@end - -@implementation MGLSourceTests - -- (void)testDuplicateSources { - MGLVectorSource *source1 = [[MGLVectorSource alloc] initWithIdentifier:@"my-source" URL:[NSURL URLWithString:@"mapbox://mapbox.mapbox-terrain-v2"]]; - MGLVectorSource *source2 = [[MGLVectorSource alloc] initWithIdentifier:@"my-source" URL:[NSURL URLWithString:@"mapbox://mapbox.mapbox-terrain-v2"]]; - - [self.mapView.style addSource: source1]; - - @try { - [self.mapView.style addSource: source2]; - XCTFail(@"Should not have reached this point"); - } - @catch (NSException *e) { - XCTAssertNotNil(e, @"Should have thrown an exception"); - } -} - -@end -- cgit v1.2.1