Assert.Pass()抛出异常

时间:2013-06-26 10:42:21

标签: nunit typemock nunit-2.5.9

我有一个构造函数如下

public class MyClass
{
   public MyClass()
   {

   }
}

在编写测试用例时,我使用了Assert.Pass()。 但它抛出ArguementNullException类型的异常

1 个答案:

答案 0 :(得分:2)

SuccessException对测试跑步者来说是一种便利。这允许您传递测试并记录可选消息。更好的方法是让测试完成而不会抛出任何异常或记录失败的断言。

此处有更多信息:http://www.nunit.org/index.php?p=utilityAsserts&r=2.5