1 instantiation of TestEntry
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
TrxLogger.cs (1)
822TestEntry 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)
66private ConcurrentDictionary<Guid, TestEntry>? _entries; 70private ConcurrentDictionary<Guid, TestEntry>? _innerTestEntries; 125_entries = new ConcurrentDictionary<Guid, TestEntry>(); 126_innerTestEntries = new ConcurrentDictionary<Guid, TestEntry>(); 822TestEntry te = new(testElement.Id, TestListCategory.UncategorizedResults.Id); 833var parentTestEntry = GetTestEntry(parentExecutionId); 846private TestEntry? GetTestEntry(Guid executionId) 849TestEntry? testEntry = null;