Initial Commit

This commit is contained in:
2024-07-02 15:58:16 -07:00
commit 6ef99c8234
13 changed files with 810 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
//
// MusicShareUITestsLaunchTests.swift
// MusicShareUITests
//
// Created by Brandon Brunson on 7/2/24.
//
import XCTest
final class MusicShareUITestsLaunchTests: XCTestCase {
override class var runsForEachTargetApplicationUIConfiguration: Bool {
true
}
override func setUpWithError() throws {
continueAfterFailure = false
}
@MainActor
func testLaunch() throws {
let app = XCUIApplication()
app.launch()
// Insert steps here to perform after app launch but before taking a screenshot,
// such as logging into a test account or navigating somewhere in the app
let attachment = XCTAttachment(screenshot: app.screenshot())
attachment.name = "Launch Screen"
attachment.lifetime = .keepAlways
add(attachment)
}
}