STRUCT
TestableTarget
Contents
- Properties
targetisSkippedisParallelizableisRandomExecutionOrdering
- Methods
init(target:skipped:parallelizable:randomExecutionOrdering:)init(stringLiteral:)
swift
public struct TestableTarget: Equatable, Hashable, Codable, ExpressibleByStringInterpolationTestable target describe target and tests information.
Properties
target
swift
public var target: TargetReferenceThe target name and its project path.
isSkipped
swift
public var isSkipped: BoolSkip test target from TestAction.
isParallelizable
swift
public var isParallelizable: BoolExecute tests in parallel.
isRandomExecutionOrdering
swift
public var isRandomExecutionOrdering: BoolExecute tests in random order.
Methods
init(target:skipped:parallelizable:randomExecutionOrdering:)
swift
public init(
target: TargetReference,
skipped: Bool = false,
parallelizable: Bool = false,
randomExecutionOrdering: Bool = false
)init(stringLiteral:)
swift
public init(stringLiteral value: String)Parameters
| Name | Description |
|---|---|
| value | The value of the new instance. |
