1 instantiation of TestEntry
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
TrxLogger.cs (1)
786TestEntry te = new(testElement.Id, TestListCategory.UncategorizedResults.Id);
12 references to TestEntry
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (12)
ObjectModel\TestEntry.cs (4)
19private List<TestEntry>? _testEntries; 44public List<TestEntry> TestEntries 48_testEntries ??= new List<TestEntry>(); 65if (obj is not TestEntry e)
TrxLogger.cs (8)
65private ConcurrentDictionary<Guid, TestEntry>? _entries; 69private ConcurrentDictionary<Guid, TestEntry>? _innerTestEntries; 116_entries = new ConcurrentDictionary<Guid, TestEntry>(); 117_innerTestEntries = new ConcurrentDictionary<Guid, TestEntry>(); 786TestEntry te = new(testElement.Id, TestListCategory.UncategorizedResults.Id); 797var parentTestEntry = GetTestEntry(parentExecutionId); 810private TestEntry? GetTestEntry(Guid executionId) 813TestEntry? testEntry = null;