1 instantiation of TestResultCollection
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (1)
HtmlLogger.cs (1)
212var newTestResultCollection = new TestResultCollection(e.Result.TestCase.Source)
7 references to TestResultCollection
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (7)
HtmlLogger.cs (4)
75public ConcurrentDictionary<string, TestResultCollection>? ResultCollectionDictionary { get; private set; } 132ResultCollectionDictionary = new ConcurrentDictionary<string, TestResultCollection>(); 209ResultCollectionDictionary.TryGetValue(e.Result.TestCase.Source, out var testResultCollection); 212var newTestResultCollection = new TestResultCollection(e.Result.TestCase.Source)
ObjectModel\TestRunDetails.cs (3)
42[DataMember] public List<TestResultCollection>? ResultCollectionList = new(); 71internal void AddResultCollection(TestResultCollection resultCollection) 75ResultCollectionList ??= new List<TestResultCollection>();