Files
speckle.xunit.runner.wpf/xunit.runner.wpf/ViewModel/SearchQuery.cs
T
2015-08-15 21:03:42 -07:00

18 lines
396 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace xunit.runner.wpf.ViewModel
{
public class SearchQuery
{
public bool IncludeFailedTests = true;
public bool IncludePassedTests = true;
public bool IncludeSkippedTests = true;
public string SearchString = string.Empty;
}
}