我想根据在TestFixtureSetUp期间从配置文件提取的数据忽略某些测试。有没有办法忽略基于参数运行测试?

[TestFixture]
public class MessagesTests
{
    private bool isPaidAccount;

    [TestFixtureSetUp]
    public void Init () {
        isPaidAccount = ConfigurationManager.AppSettings["IsPaidAccount"] == "True";
    }

    [Test]
    //this test should run only if `isPaidAccount` is true
    public void Message_Without_Template_Is_Sent()
    {
         //this tests an actual web api call.
    }

}


如果我们要测试的帐户是付费帐户,则测试应该运行良好,否则,该方法将引发异常。

属性[Ignore(ReallyIgnore = isPaidAccount )]是否会有扩展?或者我应该在方法内部编写此代码,并运行2个单独的测试用例,例如。

    public void Message_Without_Template_Is_Sent()
    {
         if(isPaidAccount)
         {
              //test for return value here
         }
         else
         {
              //test for exception here
         }
    }

最佳答案

您可以像Matthew状态一样使用Assert.Ignore()。如果要对结果进行不同的分类,也可以使用Assert.Inconclusive()

这个问题/答案有点类似:Programmatically skip an nunit test

07-26 06:15