这是我在使用 NUnit 时遇到的非常简单但令人讨厌的行为:
我有一些这样的测试:
[Test]
[TestCase( 1, 2, "hello" )]
[TestCase( 3, 5, "goodbye" )]
public void MyClass_MyMethod( int a, int b, string c )
{
Assert.IsTrue( a < b );
}
这工作正常,在 ReSharper NUnit 窗格中,我可以看到每个 TestCase 在结果中都有自己的响应。
我有第二个 TestCase 看起来像这样:
[Test]
[TestCase( 1, 2, new long[] { 100, 200 })]
[TestCase( 5, 3, new long[] { 300, 500 })]
public void MyClass_MyOtherMethod( long a, long b, long[] bunchOfNumbers )
{
Assert.IsTrue( a < b );
}
当我运行它时,我看到了这个:
一个或多个子测试有错误异常没有堆栈跟踪
公共无效 MyClass_MyOtherMethod(5,3,System.Int64[]) 失败
不同之处在于,在我的其他测试中,它会将每个 TestCase 作为测试列表上的一个单独的复选框绘制出来,而这个并没有显示出来,我没有详细信息,直到我在调试器中运行它,知道哪里出了问题。我有点担心这个测试在构建机器上的表现。有谁知道发生了什么以及为什么?