1 type derived from TestResultAggregation
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
ObjectModel\UnitTestResult.cs (1)
13internal class UnitTestResult : TestResultAggregation
1 instantiation of TestResultAggregation
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
Utility\Converter.cs (1)
689new TestResultAggregation(runId, testId, executionId, parentExecutionId, resultName, Environment.MachineName, outcome, testType, testCategoryId, _trxFileHelper) :
5 references to TestResultAggregation
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (5)
TrxLogger.cs (5)
701TPDebug.Assert(parentTestResult is TestResultAggregation, "parentTestResult is not of type TestResultAggregation"); 702((TestResultAggregation)parentTestResult).InnerResults.Add(testResult); 710TPDebug.Assert(parentTestResult is TestResultAggregation, "parentTestResult is not of type TestResultAggregation"); 711var testResultAggregation = (TestResultAggregation)parentTestResult;