1 instantiation of TestLink
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
TrxLogger.cs (1)
666
orderedTest.TestLinks.Add(testElement.Id.Id, new
TestLink
(testElement.Id.Id, testElement.Name, testElement.Storage));
5 references to TestLink
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (5)
Interfaces\ITestAggregation.cs (1)
11
Dictionary<Guid,
TestLink
> TestLinks { get; }
ObjectModel\TestElementAggregation.cs (2)
16
protected Dictionary<Guid,
TestLink
> _testLinks = new();
23
public Dictionary<Guid,
TestLink
> TestLinks
ObjectModel\TestLink.cs (2)
52
return other is
TestLink
link && Id.Equals(link.Id);
58
public bool IsSame(
TestLink
other)