这就是我想要的
[TestMethod]
public static void T1()
{
if (...)
//continue the test
else
//abort the test from continueing.
}
如果测试方法符合特定条件,我想中止测试方法。
答案 0 :(得分:1)
你不能只使用return语句
[TestMethod]
public static void T1()
{
if (...)
{
//continue the test
}
else
{
return;
}
}
答案 1 :(得分:0)
public static void T1()
{
if (...)
//continue the test
else
{
//abort the test from continueing.
return; //this will do the trick
}
}