Exemplo n.º 1
0
 public XUnitFilter(string traitName, string traitValue, bool exclude)
 {
     FilterType = XUnitFilterType.Trait;
     TraitName  = traitName;
     TraitValue = traitValue;
     Exclude    = exclude;
 }
Exemplo n.º 2
0
 public XUnitFilter(string testCaseName, bool exclude)
 {
     FilterType   = XUnitFilterType.TypeName;
     TestCaseName = testCaseName;
     Exclude      = exclude;
 }