TestArgument
fileprivate struct TestArgument : CustomStringConvertible, Sendable
An argument of a test runner.
-
The label of an argument.
See moreDeclaration
Swift
enum Label : String -
The label of the argument.
Declaration
Swift
let label: Label -
The value of the argument.
Declaration
Swift
let value: String -
Creates an instance with the given properties or returns
nilif the argument is invalid.Declaration
Swift
init?(_ label: Substring, _ value: Substring) -
Declaration
Swift
var description: String { get }
View on GitHub