1 write to Output
Aspire.Workload.Tests (1)
tests\Shared\WorkloadTesting\CommandResult.cs (1)
23Output = output;
12 references to Output
Aspire.Workload.Tests (12)
BuildAndRunTemplateTests.cs (1)
147Assert.Contains("setting must be an https address unless the 'ASPIRE_ALLOW_UNSECURED_TRANSPORT'", res.Output);
NewUpAndBuildStandaloneTemplateTests.cs (1)
52Assert.Contains(error, tce.Result.Value.Output);
NewUpAndBuildSupportProjectTemplatesTests.cs (1)
62Assert.Contains(error, tce.Result.Value.Output);
PerTestFrameworkTemplatesTests.cs (2)
58Assert.Matches("System.ArgumentException.*Resource 'webfrontend' not found.", res.Output); 59Assert.Matches("Failed! * - Failed: *1, Passed: *0, Skipped: *0, Total: *1", res.Output);
tests\Shared\WorkloadTesting\AspireProject.cs (4)
105if (res.Output.Contains("Restore failed", StringComparison.OrdinalIgnoreCase) || 106res.Output.Contains("Post action failed", StringComparison.OrdinalIgnoreCase)) 108throw new ToolCommandException($"`dotnet new {cmdString}` . Output: {res.Output}", res); 429containerName = res.Output;
tests\Shared\WorkloadTesting\CommandResult.cs (2)
37if (!string.IsNullOrEmpty(Output)) 39_ = message.AppendLine(CultureInfo.InvariantCulture, $"{Environment.NewLine}Standard Output:{Environment.NewLine}{Output}");
WorkloadTestsBase.cs (1)
345Assert.Matches("Passed! * - Failed: *0, Passed: *1, Skipped: *0, Total: *1", testRes.Output);