如何从继续运行中止测试方法

时间:2012-01-04 06:03:23

标签: c# testing

这就是我想要的

[TestMethod]
public static void T1()
{
    if (...)
        //continue the test
    else
        //abort the test from continueing.
}

如果测试方法符合特定条件,我想中止测试方法。

2 个答案:

答案 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
         }
    }