Português (Portuguese)
Appearance
Português (Portuguese)
Appearance
STRUCT
TestingOptions Contents
rawValueparallelizablerandomExecutionOrderinginit(rawValue:)public struct TestingOptions: OptionSet, Codable, Equatable, SendableOptions to configure testing of autogenerated schemes.
rawValue public let rawValue: Intparallelizable public static let parallelizable = TestingOptions(rawValue: 1 << 0)Run tests on multiple destinations in parallel
randomExecutionOrdering public static let randomExecutionOrdering = TestingOptions(rawValue: 1 << 1)Execute tests in random order
init(rawValue:) public init(rawValue: Int)| Name | Description |
|---|---|
| rawValue | The raw value of the option set to create. Each bit of rawValue potentially represents an element of the option set, though raw values may include bits that are not defined as distinct values of the OptionSet type. |