placeholder

This commit is contained in:
Michael Freno
2026-01-29 19:54:53 -05:00
parent 30af29e1d9
commit 07838c8e79
3 changed files with 34 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
//
// 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()
}
}
}
}