1 write to Output
Microsoft.CodeAnalysis.Test.Utilities (1)
88 references to Output
Microsoft.Build.Tasks.CodeAnalysis.Sdk.UnitTests (29)
src\Compilers\Core\MSBuildTaskTests\TestUtilities\IntegrationTestBase.cs (29)
178_output.WriteLine(result.Output);
181Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
185Assert.DoesNotContain("csc.dll", result.Output);
186Assert.Contains($"csc{PlatformInformation.ExeExtension} ", result.Output);
190Assert.Contains("csc.dll", result.Output);
191Assert.DoesNotContain($"csc{PlatformInformation.ExeExtension} ", result.Output);
253_output.WriteLine(result.Output);
256Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
260Assert.DoesNotContain("vbc.dll", result.Output);
261Assert.Contains($"vbc{PlatformInformation.ExeExtension} ", result.Output);
265Assert.Contains("vbc.dll", result.Output);
266Assert.DoesNotContain($"vbc{PlatformInformation.ExeExtension} ", result.Output);
294_output.WriteLine(result.Output);
302Assert.Contains("error CS0246", result.Output);
307Assert.Contains("error CS0006", result.Output);
312Assert.Contains("error CS0234", result.Output);
320Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
350_output.WriteLine(result.Output);
358Assert.Contains("error BC2017", result.Output);
364Assert.Contains("error BC30451", result.Output);
372Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
405_output.WriteLine(result.Output);
411Assert.Contains("error CS0234", result.Output);
416Assert.Contains($"{(includeCustomRsp ? "error" : "warning")} CS0618", result.Output);
419Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
453_output.WriteLine(result.Output);
459Assert.Contains("error BC30002", result.Output);
464Assert.Contains($"{(includeCustomRsp ? "error" : "warning")} BC40000", result.Output);
467Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (35)
TestUtilities\IntegrationTestBase.cs (29)
178_output.WriteLine(result.Output);
181Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
185Assert.DoesNotContain("csc.dll", result.Output);
186Assert.Contains($"csc{PlatformInformation.ExeExtension} ", result.Output);
190Assert.Contains("csc.dll", result.Output);
191Assert.DoesNotContain($"csc{PlatformInformation.ExeExtension} ", result.Output);
253_output.WriteLine(result.Output);
256Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
260Assert.DoesNotContain("vbc.dll", result.Output);
261Assert.Contains($"vbc{PlatformInformation.ExeExtension} ", result.Output);
265Assert.Contains("vbc.dll", result.Output);
266Assert.DoesNotContain($"vbc{PlatformInformation.ExeExtension} ", result.Output);
294_output.WriteLine(result.Output);
302Assert.Contains("error CS0246", result.Output);
307Assert.Contains("error CS0006", result.Output);
312Assert.Contains("error CS0234", result.Output);
320Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
350_output.WriteLine(result.Output);
358Assert.Contains("error BC2017", result.Output);
364Assert.Contains("error BC30451", result.Output);
372Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
405_output.WriteLine(result.Output);
411Assert.Contains("error CS0234", result.Output);
416Assert.Contains($"{(includeCustomRsp ? "error" : "warning")} CS0618", result.Output);
419Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
453_output.WriteLine(result.Output);
459Assert.Contains("error BC30002", result.Output);
464Assert.Contains($"{(includeCustomRsp ? "error" : "warning")} BC40000", result.Output);
467Assert.Contains(useSharedCompilation ? "server processed compilation" : "using command line tool by design", result.Output);
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (11)
Microsoft.CodeAnalysis.CSharp.Scripting.Desktop.UnitTests (5)
Microsoft.CodeAnalysis.Test.Utilities (1)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (5)
VBCSCompiler.UnitTests (2)