@@ -15,19 +15,19 @@ namespace Filter
1515 public class Tests
1616 {
1717
18- [Test,Category(""FooGroup"")]
18+ [Test,Category(""FooGroup""),Category(""AllGroup"") ]
1919 public void Foo()
2020 {
2121 Assert.Pass();
2222 }
2323
24- [Test,Explicit,Category(""IsExplicit""),Category(""FooGroup"")]
24+ [Test,Explicit,Category(""IsExplicit""),Category(""FooGroup""),Category(""AllGroup"") ]
2525 public void FooExplicit()
2626 {
2727 Assert.Pass();
2828 }
2929
30- [Test, Category(""BarGroup"")]
30+ [Test, Category(""BarGroup""),Category(""AllGroup"") ]
3131 public void Bar()
3232 {
3333 Assert.Pass();
@@ -45,6 +45,8 @@ public void Bar()
4545 [ TestCase ( @"TestCategory=IsExplicit" , 1 , 1 ) ]
4646 [ TestCase ( @"FullyQualifiedName=Filter.Tests.Foo" , 1 , 1 ) ]
4747 [ TestCase ( @"FullyQualifiedName!=Filter.Tests.Foo" , 1 , 1 ) ]
48+ [ TestCase ( @"TestCategory!=AllGroup" , 0 , 0 ) ]
49+ // [TestCase(@"TestThatDontExistHere", 0, 0)]
4850 // [TestCase(@"FullyQualifiedName~Filter.Tests.Foo", 1, 1)]
4951 // [TestCase(@"FullyQualifiedName~Foo", 1, 1)]
5052 public void Filter_DotNetTest ( string filter , int executed , int total )
0 commit comments