mirror of
				https://github.com/maxgoedjen/secretive.git
				synced 2025-11-04 01:10:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			697 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			697 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
import Foundation
 | 
						|
import XCTest
 | 
						|
@testable import SecretKit
 | 
						|
@testable import SecureEnclaveSecretKit
 | 
						|
@testable import SmartCardSecretKit
 | 
						|
 | 
						|
class AnySecretTests: XCTestCase {
 | 
						|
 | 
						|
    func testEraser() {
 | 
						|
        let secret = SmartCard.Secret(id: UUID().uuidString.data(using: .utf8)!, name: "Name", algorithm: .ellipticCurve, keySize: 256, publicKey: UUID().uuidString.data(using: .utf8)!)
 | 
						|
        let erased = AnySecret(secret)
 | 
						|
        XCTAssert(erased.id == secret.id as AnyHashable)
 | 
						|
        XCTAssert(erased.name == secret.name)
 | 
						|
        XCTAssert(erased.algorithm == secret.algorithm)
 | 
						|
        XCTAssert(erased.keySize == secret.keySize)
 | 
						|
        XCTAssert(erased.publicKey == secret.publicKey)
 | 
						|
    }
 | 
						|
 | 
						|
}
 |