From 50aebd3b427ac6a88eb0003fba2c2c6605091ed9 Mon Sep 17 00:00:00 2001 From: shamanec Date: Thu, 10 Aug 2023 16:39:19 +0300 Subject: [PATCH] remove obsolete file --- ...uitest_sample_projUITestsLaunchTests.swift | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 xcuitest-sample-projUITests/xcuitest_sample_projUITestsLaunchTests.swift diff --git a/xcuitest-sample-projUITests/xcuitest_sample_projUITestsLaunchTests.swift b/xcuitest-sample-projUITests/xcuitest_sample_projUITestsLaunchTests.swift deleted file mode 100644 index 0879444..0000000 --- a/xcuitest-sample-projUITests/xcuitest_sample_projUITestsLaunchTests.swift +++ /dev/null @@ -1,32 +0,0 @@ -// -// xcuitest_sample_projUITestsLaunchTests.swift -// xcuitest-sample-projUITests -// -// Created by Nikola Shabanov on 18.07.23. -// - -import XCTest - -final class xcuitest_sample_projUITestsLaunchTests: 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) - } -}