// Copyright (c) Microsoft. All rights reserved. namespace VerifySamples; /// /// The result of verifying a single sample. /// internal sealed class VerificationResult { public required string SampleName { get; init; } public required bool Passed { get; init; } public required string Summary { get; init; } public List Failures { get; init; } = []; public string? AIReasoning { get; init; } /// /// The sample's stdout output, captured for log file output. /// public string? Stdout { get; init; } /// /// The sample's stderr output, captured for log file output. /// public string? Stderr { get; init; } /// /// Per-sample log lines, buffered during parallel execution /// and written sequentially to the log file. /// public List LogLines { get; init; } = []; }