1 write to Output
Aspire.Workload.Tests (1)
tests\Shared\WorkloadTesting\CommandResult.cs (1)
24Output = output;
10 references to Output
Aspire.Workload.Tests (10)
PerTestFrameworkTemplatesTests.cs (2)
85Assert.Matches("System.ArgumentException.*Resource 'webfrontend' not found.", res.Output); 86Assert.Matches("Failed! * - Failed: *1, Passed: *0, Skipped: *0, Total: *1", res.Output);
TemplateTests.cs (1)
147Assert.Contains("setting must be an https address unless the 'ASPIRE_ALLOW_UNSECURED_TRANSPORT'", res.Output);
tests\Shared\WorkloadTesting\AspireProject.cs (4)
86if (res.Output.Contains("Restore failed", StringComparison.OrdinalIgnoreCase) || 87res.Output.Contains("Post action failed", StringComparison.OrdinalIgnoreCase)) 89throw new XunitException($"`dotnet {$"new {template} {extraArgs} -o \"{id}\""}` . Output: {res.Output}"); 390containerName = res.Output;
tests\Shared\WorkloadTesting\CommandResult.cs (2)
38if (!string.IsNullOrEmpty(Output)) 40_ = message.AppendLine(CultureInfo.InvariantCulture, $"{Environment.NewLine}Standard Output:{Environment.NewLine}{Output}");
WorkloadTestsBase.cs (1)
229Assert.Matches("Passed! * - Failed: *0, Passed: *1, Skipped: *0, Total: *1", res.Output);