Skip to content

Commit

Permalink
TODO :/
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 committed Feb 3, 2025
1 parent f179116 commit 29b5dd3
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,14 @@ public TreeNodeFilterExpression(TreeNodeFilter treeNodeFilter, IEnumerable<strin
public string TestCaseFilterValue => _treeNodeFilter.Filter;

public bool MatchTestCase(TestCase testCase, Func<string, object?> propertyValueProvider)
=> true;
{
// TODO
var assemblyName = Path.GetFileNameWithoutExtension(testCase.Source);
var @namespace = ;
var className = ;
var methodName = ;
var propertyBag = ;

return _treeNodeFilter.MatchesFilter($"/{assemblyName}/{@namespace}/{className}/{methodName}", propertyBag);
}
}

0 comments on commit 29b5dd3

Please sign in to comment.