19 lines
388 B
Swift
19 lines
388 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import XCTest
|
|
@testable import AWSCognitoAuthPlugin
|
|
|
|
class ASFDeviceInfoTests: XCTestCase {
|
|
|
|
func testdeviceInfo() {
|
|
let asf = ASFDeviceInfo(id: "mockID")
|
|
let deviceFingerPrint = asf.deviceInfo()
|
|
XCTAssertNotNil(deviceFingerPrint)
|
|
}
|
|
}
|