Skip to content

Commit c82be0b

Browse files
committed
Add experimental AdvancedConsoleOutputRecorder skeleton
1 parent ef8252b commit c82be0b

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Sources/Testing/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ add_library(Testing
2727
Attachments/Attachment.swift
2828
Events/Clock.swift
2929
Events/Event.swift
30+
Events/Recorder/Event.AdvancedConsoleOutputRecorder.swift
3031
Events/Recorder/Event.ConsoleOutputRecorder.swift
3132
Events/Recorder/Event.HumanReadableOutputRecorder.swift
3233
Events/Recorder/Event.JUnitXMLRecorder.swift

Sources/Testing/Events/Recorder/Event.AdvancedConsoleOutputRecorder.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,7 @@ extension Event.AdvancedConsoleOutputRecorder {
6666
/// Handle an event by processing it and generating appropriate output.
6767
///
6868
/// Currently this is a skeleton implementation that delegates to the
69-
/// standard ConsoleOutputRecorder. Future PRs will add:
70-
/// - PR #2: Hierarchical display logic
71-
/// - PR #3: Live progress bar functionality
72-
/// - PR #4: Enhanced symbol integration
69+
/// standard ConsoleOutputRecorder.
7370
///
7471
/// - Parameters:
7572
/// - event: The event to handle.

Sources/Testing/Support/LiveUpdatingLine.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
/// printLiveUpdatingLine("Processing... 100%")
2828
/// ```
2929
public func printLiveUpdatingLine(_ text: String) {
30-
print("\r\u{001B}[2K\(text)", terminator: "")
30+
print("\r\u{001B}[2K\(text)", terminator: "")
3131
}

0 commit comments

Comments
 (0)