Files
Gaze/GazeUITests/GazeUITests.swift
Michael Freno 07838c8e79 placeholder
2026-01-29 19:54:53 -05:00

28 lines
576 B
Swift

//
// GazeUITests.swift
// GazeUITests
//
// Created by Mike Freno on 1/29/2026.
//
import XCTest
final class GazeUITests: XCTestCase {
override func setUpWithError() throws {
continueAfterFailure = false
try super.setUpWithError()
}
override func tearDownWithError() throws {
try super.tearDownWithError()
}
func testLaunchPerformance() throws {
if #available(macOS 10.15, *) {
measure(metrics: [XCTApplicationLaunchMetric()]) {
XCUIApplication().launch()
}
}
}
}