case class SpawnedProcess(process: SubProcess, chunks: Buffer[Either[Bytes, Bytes]])
A spawned subprocess with automatic stdout/stderr capture. Each line printed to stdout/stderr is captured in the buffer and also printed to console. The buffer preserves ordering, with Left representing stdout and Right representing stderr.
Asserts that the given lines appear as exact consecutive lines in the combined stdout/stderr output. Normalizes backslashes to forward slashes for cross-platform compatibility.
Asserts that the given lines appear as exact consecutive lines in the combined stdout/stderr output. Normalizes backslashes to forward slashes for cross-platform compatibility.
Returns true iff the given lines appear as exact consecutive lines in the combined stdout/stderr output. Normalizes backslashes to forward slashes for cross-platform compatibility.
Returns true iff the given lines appear as exact consecutive lines in the combined stdout/stderr output. Normalizes backslashes to forward slashes for cross-platform compatibility.