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