有没有办法在 MSTest 中同时使用类别和有序测试?
[TestMethod, TestCategory("UITest")]
public void TestMethod()
{
}
并将一个新的有序测试添加到我的测试项目中。
好吧..从命令行调用此方法,例如:
MSTest.exe /testcontainer:MyOrderedTest.orderedtest
它将执行测试方法。
但是当像下面这样调用 MSTest 时:
MSTest.exe /testcontainer:MyOrderedTest.orderedtest /category:UITest
它找不到测试方法..
奇怪的行为 ..
有没有办法做到这一点?