diff options
author | Arturs Artamonovs <arturs.artamonovs@protonmail.com> | 2025-01-17 09:27:56 +0000 |
---|---|---|
committer | Arturs Artamonovs <arturs.artamonovs@protonmail.com> | 2025-01-17 09:27:56 +0000 |
commit | 06a90001363fdcb542b531a74ed2c18f714f58c4 (patch) | |
tree | e0ae3092494e6136ec7479b0e9bda20ef930039b /Waterfall_UIUITests/Waterfall_UIUITestsLaunchTests.swift | |
parent | a0d12ecbac8fe327d1dcd4580fee594e24d4191b (diff) | |
download | PrySDR-06a90001363fdcb542b531a74ed2c18f714f58c4.tar.gz PrySDR-06a90001363fdcb542b531a74ed2c18f714f58c4.zip |
waterfallui: data get processed and drawn, ui controlls are dummy
Diffstat (limited to 'Waterfall_UIUITests/Waterfall_UIUITestsLaunchTests.swift')
-rw-r--r-- | Waterfall_UIUITests/Waterfall_UIUITestsLaunchTests.swift | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Waterfall_UIUITests/Waterfall_UIUITestsLaunchTests.swift b/Waterfall_UIUITests/Waterfall_UIUITestsLaunchTests.swift new file mode 100644 index 0000000..d4d2fb8 --- /dev/null +++ b/Waterfall_UIUITests/Waterfall_UIUITestsLaunchTests.swift @@ -0,0 +1,33 @@ +// +// Waterfall_UIUITestsLaunchTests.swift +// Waterfall_UIUITests +// +// Created by Jacky Jack on 06/01/2025. +// + +import XCTest + +final class Waterfall_UIUITestsLaunchTests: 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) + } +} |