如何忽略NUnit中的测试结果?

时间:2015-06-05 18:22:11

标签: c# nunit

我知道我可以忽略整个函数,但是如果我在测试中运行[TestCaseSource]并且我希望xml中只有某个值得到结果=“忽略”该怎么办?

    [Test, TestCaseSource("divider")]
    static public void NUnitWriter(string commandLine)
    {
        int errorLevel;
        errorLevel = executeCmd (commandLine);

        Assert.AreNotEqual (0, errorLevel, writeInXml);
    }

现在在断言之前,我想做出这样的事情:

if (errorLevel == 63)
{
     //then how to write result="ignore" in the xml?
}

0 个答案:

没有答案