Русский (Russian)
Appearance
STRUCT
TestingOptions
Contents
rawValue
parallelizable
randomExecutionOrdering
init(rawValue:)
public struct TestingOptions: OptionSet, Codable, Equatable, Sendable
Options to configure testing of autogenerated schemes.
rawValue
public let rawValue: Int
parallelizable
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. |