3 writes to Outcome
Microsoft.TestPlatform.CommunicationUtilities (2)
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;
21 references to Outcome
Microsoft.TestPlatform.CommunicationUtilities (2)
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)
204ResultOutcome = e.Result.Outcome 223switch (e.Result.Outcome) 243if (e.Result.Outcome == TestOutcome.Failed)
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (4)
TrxLogger.cs (4)
274if (e.Result.Outcome == ObjectModel.TestOutcome.Skipped) 450TPDebug.Assert(rsTestResult.Outcome == ObjectModel.TestOutcome.Skipped, "Test Result should be skipped but it is " + rsTestResult.Outcome); 686TrxLoggerObjectModel.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)