1 instantiation of TestProgress
Microsoft.CodeAnalysis.LanguageServer (1)
Testing\TestRunner.cs (1)
38var initialProgress = new TestProgress
6 references to TestProgress
Microsoft.CodeAnalysis.LanguageServer (5)
Testing\TestRunner.cs (1)
38var initialProgress = new TestProgress
Testing\TestRunner.TestRunHandler.cs (4)
20private sealed class TestRunHandler(BufferedProgress<RunTestsPartialResult> progress, TestProgress initialProgress, ILogger logger) : ITestRunEventsHandler 24private readonly TestProgress _initialProgress = initialProgress; 98private TestProgress? CreateReport(ITestRunStatistics? testRunStatistics) 124var stats = _initialProgress with { TestsPassed = passed, TestsFailed = failed, TestsSkipped = skipped };
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Testing\RunTestsPartialResult.cs (1)
12[property: JsonPropertyName("progress"), JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] TestProgress? Progress