27 lines
525 B
Swift
27 lines
525 B
Swift
//
|
|
// SelfieCamUITestsLaunchTests.swift
|
|
// SelfieCamUITests
|
|
//
|
|
// Created by Matt Bruce on 1/4/26.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
final class SelfieCamUITestsLaunchTests: XCTestCase {
|
|
|
|
override class var runsForEachTargetApplicationUIConfiguration: Bool {
|
|
true
|
|
}
|
|
|
|
override func setUpWithError() throws {
|
|
continueAfterFailure = false
|
|
}
|
|
|
|
@MainActor
|
|
func testLaunch() throws {
|
|
let app = XCUIApplication()
|
|
app.launch()
|
|
XCTAssertTrue(app.state == .runningForeground)
|
|
}
|
|
}
|