/XCTApps

This package contains the bundle identifiers of all iOS/iPadOS/macOS/tvOS native (system) Apple's apps. Designed to be used with XCTest.

Primary LanguageSwiftMIT LicenseMIT

XCTApps

This package contains an enumeration of all iOS, iPadsOS, macOS, and tvOS apps developed by Apple.

Designed to be used with XCTest.

import XCTest
import XCTApps

class ExampleTests: XCTestCase {
    func testOpenSafari() {
        XCTApps.safari.app.launch()
    }
}