我知道我可以忽略整个函数,但是如果我在测试中运行[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?
}