1 instantiation of TestLink
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
TrxLogger.cs (1)
753orderedTest.AddTestLink(new TestLink(testElement.Id.Id, testElement.Name, testElement.Storage));
9 references to TestLink
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (9)
Interfaces\ITestAggregation.cs (2)
14IReadOnlyDictionary<Guid, TestLink> TestLinks { get; } 19void AddTestLink(TestLink testLink);
ObjectModel\TestElementAggregation.cs (5)
25private readonly Dictionary<Guid, TestLink> _testLinks = new(); 32public IReadOnlyDictionary<Guid, TestLink> TestLinks 38return new Dictionary<Guid, TestLink>(_testLinks); 46public void AddTestLink(TestLink testLink) 61List<TestLink> testLinks;
ObjectModel\TestLink.cs (2)
52return other is TestLink link && Id.Equals(link.Id); 58public bool IsSame(TestLink other)