32 lines
597 B
Swift
32 lines
597 B
Swift
//
|
|
// MagicCounterUITests.swift
|
|
// MagicCounterUITests
|
|
//
|
|
// Created by Atridad Lahiji on 2025-12-06.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
final class MagicCounterUITests: XCTestCase {
|
|
|
|
override func setUpWithError() throws {
|
|
continueAfterFailure = false
|
|
}
|
|
|
|
override func tearDownWithError() throws {
|
|
}
|
|
|
|
@MainActor
|
|
func testExample() throws {
|
|
let app = XCUIApplication()
|
|
app.launch()
|
|
}
|
|
|
|
@MainActor
|
|
func testLaunchPerformance() throws {
|
|
measure(metrics: [XCTApplicationLaunchMetric()]) {
|
|
XCUIApplication().launch()
|
|
}
|
|
}
|
|
}
|