yattee/Tests macOS/Tests_macOS.swift
2021-11-07 15:37:32 +01:00

13 lines
376 B
Swift

import XCTest
class Tests_macOS: XCTestCase {
func testLaunchPerformance() throws {
if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) {
// This measures how long it takes to launch your application.
measure(metrics: [XCTApplicationLaunchMetric()]) {
XCUIApplication().launch()
}
}
}
}