Files
speckle.xunit.runner.wpf/xunit.runner.wpf/ViewModel/SearchQuery.cs
T
Dustin Campbell 4bc641e575 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.
2015-12-06 11:02:01 -08:00

14 lines
422 B
C#

using System.Collections.Generic;
namespace Xunit.Runner.Wpf.ViewModel
{
public class SearchQuery
{
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);
}
}