summaryrefslogtreecommitdiff
path: root/platform/ios/test/MGLAnnotationViewIntegrationTests.swift
blob: 82a57a40097d370187a51f9a860dca316ef01b4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)
    }
    
}