28 lines
576 B
Swift
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()
|
|
}
|
|
}
|
|
}
|
|
}
|