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