4 writes to Outcome
Microsoft.TestPlatform.CommunicationUtilities (3)
_generated\65\TestPlatformJsonContext.TestResult.g.cs (1)
103Setter = static (obj, value) => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult)obj).Outcome = value!,
Serialization\TestResultConverter.cs (1)
90testResult.Outcome = (TestOutcome)Enum.Parse(typeof(TestOutcome), propertyData!); break;
Serialization\TestResultConverterV2.cs (1)
59testResult.Outcome = (TestOutcome)outcome.GetInt32();
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
TestResult.cs (1)
213Outcome = (TestOutcome)value!; return;
23 references to Outcome
Microsoft.TestPlatform.CommunicationUtilities (4)
_generated\65\TestPlatformJsonContext.TestResult.g.cs (2)
102Getter = static obj => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult)obj).Outcome, 359global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult)value).Outcome, TestOutcome);
Serialization\TestResultConverter.cs (1)
134writer.WriteNumberValue((int)value.Outcome);
Serialization\TestResultConverterV2.cs (1)
118writer.WriteNumber("Outcome", (int)value.Outcome);
Microsoft.TestPlatform.CrossPlatEngine (3)
Adapter\TestExecutionRecorder.cs (1)
100SendTestCaseEnd(testResult.TestCase, testResult.Outcome);
Execution\TestRunCache.cs (2)
208if (_runStats.TryGetValue(testResult.Outcome, out long count)) 217_runStats[testResult.Outcome] = count;
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (3)
HtmlLogger.cs (3)
213ResultOutcome = e.Result.Outcome 232switch (e.Result.Outcome) 252if (e.Result.Outcome == TestOutcome.Failed)
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (4)
TrxLogger.cs (4)
303if (e.Result.Outcome == ObjectModel.TestOutcome.Skipped) 498TPDebug.Assert(rsTestResult.Outcome == ObjectModel.TestOutcome.Skipped, "Test Result should be skipped but it is " + rsTestResult.Outcome); 739TrxLoggerObjectModel.TestOutcome testOutcome = Converter.ToOutcome(rocksteadyTestResult.Outcome);
Microsoft.VisualStudio.TestPlatform.ObjectModel (3)
TestResult.cs (3)
125TestOutcomeHelper.GetOutcomeString(Outcome)); 128if (Outcome == TestOutcome.Failed) 186"TestResult.Outcome" => Outcome,
vstest.console (3)
Internal\ConsoleLogger.cs (2)
535switch (e.Result.Outcome) 909Outcome = testResult.Outcome;
Internal\MSBuildLogger.cs (1)
153switch (e.Result.Outcome)
vstest.console.arm64 (3)
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (2)
535switch (e.Result.Outcome) 909Outcome = testResult.Outcome;
src\vstest\src\vstest.console\Internal\MSBuildLogger.cs (1)
153switch (e.Result.Outcome)