1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import XCTest
- final class PDF_Reader_Pro_ProUITests: XCTestCase {
- override func setUpWithError() throws {
-
-
- continueAfterFailure = false
-
- }
- override func tearDownWithError() throws {
-
- }
- func testExample() throws {
-
- let app = XCUIApplication()
- app.launch()
-
- }
- func testLaunchPerformance() throws {
- if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) {
-
- measure(metrics: [XCTApplicationLaunchMetric()]) {
- XCUIApplication().launch()
- }
- }
- }
- }
|