1 instantiation of TestLink
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
TrxLogger.cs (1)
666orderedTest.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)
11Dictionary<Guid, TestLink> TestLinks { get; }
ObjectModel\TestElementAggregation.cs (2)
16protected Dictionary<Guid, TestLink> _testLinks = new(); 23public Dictionary<Guid, TestLink> TestLinks
ObjectModel\TestLink.cs (2)
52return other is TestLink link && Id.Equals(link.Id); 58public bool IsSame(TestLink other)