Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Sources/Testing/Issues/Issue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,20 @@ public struct Issue: Sendable {
///
/// An issue with warning severity does not cause the test it's associated
/// with to be marked as a failure, but is noted in the results.
///
/// @Metadata {
/// @Available(Swift, introduced: 6.3)
/// }
case warning

/// The severity level for an issue which represents an error in a test.
///
/// An issue with error severity causes the test it's associated with to be
/// marked as a failure.
///
/// @Metadata {
/// @Available(Swift, introduced: 6.3)
/// }
case error
}

Expand Down