1 write to ResultCollectionDictionary
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (1)
HtmlLogger.cs (1)
132ResultCollectionDictionary = new ConcurrentDictionary<string, TestResultCollection>();
4 references to ResultCollectionDictionary
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (4)
HtmlLogger.cs (4)
118[MemberNotNull(nameof(TestResultsDirPath), nameof(TestRunDetails), nameof(Results), nameof(ResultCollectionDictionary))] 193TPDebug.Assert(ResultCollectionDictionary != null && TestRunDetails != null && Results != null, "Initialize must be called before this method."); 209ResultCollectionDictionary.TryGetValue(e.Result.TestCase.Source, out var testResultCollection); 220testResultCollection = ResultCollectionDictionary.GetOrAdd(e.Result.TestCase.Source, newTestResultCollection);