Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public class SpecificationFilterProvider : ISpecificationFilterProvider

private readonly Dictionary<string, TestProperty> testCaseProperties = new Dictionary<string, TestProperty>(StringComparer.OrdinalIgnoreCase)
{
[TestCaseProperties.FullyQualifiedName.Id] = TestCaseProperties.FullyQualifiedName,
Copy link

@jsskeen-utah jsskeen-utah Jan 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure what the Id property has previously been used for. Does this have to be changed from Id to Label or could we include both? Perhaps you could link to the source of other test runners where they do the same thing?

[TestCaseProperties.DisplayName.Id] = TestCaseProperties.DisplayName
[TestCaseProperties.FullyQualifiedName.Label] = TestCaseProperties.FullyQualifiedName,
[TestCaseProperties.DisplayName.Label] = TestCaseProperties.DisplayName
};

private readonly Dictionary<string, TestProperty> traitProperties = new Dictionary<string, TestProperty>(StringComparer.OrdinalIgnoreCase)
Expand Down