这是我使用NUnit遇到的非常简单但令人讨厌的行为:
我有一个这样的测试:
static string[] EvenStr = new string[] { "1", "2", "3", "4" };
[Test, TestCaseSource("EvenStr")]
public void TestMethod(string num)
{
Assert.IsTrue( 1 == 1 );
}
当我运行它时,我看到以下内容:
One or more child tests had errors Exception doesn't have a stacktrace
test case source could not be found
我使用NUnit 3.10.1和.net 4.5
有人知道发生了什么以及为什么吗?