mirror of
https://github.com/xweiba/location-spoofer.git
synced 2026-09-21 22:30:46 +08:00
9 lines
265 B
Swift
9 lines
265 B
Swift
import XCTest
|
|
@testable import PaopaoLocationSpoofer
|
|
|
|
final class CertificateTrustVerifierTests: XCTestCase {
|
|
func testVerifierRejectsMalformedPEM() {
|
|
XCTAssertFalse(CertificateTrustVerifier.isCACertificateTrusted(certPEM: "not a certificate"))
|
|
}
|
|
}
|