summaryrefslogtreecommitdiff
path: root/platform/ios/test/MGLAnnotationViewIntegrationTests.swift
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/test/MGLAnnotationViewIntegrationTests.swift')
-rw-r--r--platform/ios/test/MGLAnnotationViewIntegrationTests.swift23
1 files changed, 0 insertions, 23 deletions
diff --git a/platform/ios/test/MGLAnnotationViewIntegrationTests.swift b/platform/ios/test/MGLAnnotationViewIntegrationTests.swift
deleted file mode 100644
index 82a57a4009..0000000000
--- a/platform/ios/test/MGLAnnotationViewIntegrationTests.swift
+++ /dev/null
@@ -1,23 +0,0 @@
-import XCTest
-import Mapbox
-
-class CustomAnnotationView: MGLAnnotationView {
-
- override init(reuseIdentifier: String?) {
- super.init(reuseIdentifier: reuseIdentifier)
- }
-
- required init?(coder aDecoder: NSCoder) {
- super.init(coder: aDecoder)
- }
-
-}
-
-class MGLAnnotationViewIntegrationTests: XCTestCase {
-
- func testCreatingCustomAnnotationView() {
- let customAnnotationView = CustomAnnotationView(reuseIdentifier: "resuse-id")
- XCTAssertNotNil(customAnnotationView)
- }
-
-}