/
StarLord4023
/
FirstProject
Обзор
Документация
Войти
/
StarLord4023
/
FirstProject
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
secondProjectUITests/secondProjectUITestsLaunchTests.swift
32 строки
859 B
ArtLep4215
first_commit
02 фев 2026, 11:10
02 фев 2026, 11:10
6d8cf95
Код
Авторство
О чём код?
// // secondProjectUITestsLaunchTests.swift // secondProjectUITests // // Created by Лепёшкин Артём Дмитриевич on 02.02.2026. // import XCTest final class secondProjectUITestsLaunchTests: XCTestCase { override class var runsForEachTargetApplicationUIConfiguration: Bool { true } override func setUpWithError() throws { continueAfterFailure = false } 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) } }