在我的NUnit testfixtrues中,我有一些东西
原文链接:/javaschema/282105.html[Test,Category("catA")] public void test1 { // } [Test,Category("catB")] public void test2 { // } [Test,Category("catA")] [Test,Category("catB")] public void test3 { // }
现在在NUnit gui我想要能够选择catA和catB,并运行catA和catB存在的测试。目前不是这样,NUnit将运行所有3个测试。
有没有办法将此行为更改为AND条件而不是OR?
我目前正在运行v2.5.0.9122。
提前致谢。