1 instantiation of TestEntry
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
TrxLogger.cs (1)
732TestEntry 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; 115_entries = new ConcurrentDictionary<Guid, TestEntry>(); 116_innerTestEntries = new ConcurrentDictionary<Guid, TestEntry>(); 732TestEntry te = new(testElement.Id, TestListCategory.UncategorizedResults.Id); 743var parentTestEntry = GetTestEntry(parentExecutionId); 756private TestEntry? GetTestEntry(Guid executionId) 759TestEntry? testEntry = null;