Invert test case filter buttons and mark skipped tests during discovery

The filter buttons are now unchecked by default, which has the meaning of no filter applied. Clicking the filter buttons the applies that filter. In addition, we now mark skipped tests when they are discovered.
This commit is contained in:
Dustin Campbell
2015-12-06 09:54:11 -08:00
parent ba48e2cb24
commit 4bc641e575
6 changed files with 57 additions and 33 deletions
+3 -3
View File
@@ -4,9 +4,9 @@ namespace Xunit.Runner.Wpf.ViewModel
{
public class SearchQuery
{
public bool IncludeFailedTests = true;
public bool IncludePassedTests = true;
public bool IncludeSkippedTests = true;
public bool FilterFailedTests = false;
public bool FilterPassedTests = false;
public bool FilterSkippedTests = false;
public string SearchString = string.Empty;
public ISet<TraitViewModel> TraitSet = new HashSet<TraitViewModel>(TraitViewModel.EqualityComparer);
}