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