使 NUnit 不会在第一次失败时停止
我正在对数字列表运行 NUnit 测试。
我的代码是这样的:
numbers = GetListOfNumbers()
foreach number in numbers
Assert.IsTrue(TestNumber(number))
我的问题是 NUnit 会在它遇到的第一个未通过测试的数字上停止测试。
如果有任何数字未通过,是否有办法使 NUnit 仍然无法通过测试,但给我所有未通过的数字的列表?
I'm running a NUnit test over a list of numbers.
My code goes something like this:
numbers = GetListOfNumbers()
foreach number in numbers
Assert.IsTrue(TestNumber(number))
My problem is that NUnit will stop the test on the first number it encounters that doesn't pass the test.
Is there anyway to make NUnit still fail the test if any numbers don't pass, but give me the list of all numbers that don't pass?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
作为解决方法,您可以尝试以下方法,而不是使用 Assert.IsTrue 这样的方法:
As a workaround, instead of using an Assert.IsTrue like that, you could try something like:
NUnit 2.5 具有数据驱动测试; 这将完全满足您的需要。 它将迭代您的所有数据并为每个数字生成单独的测试用例。
链接
NUnit 2.5 has data-driven testing; this will do exactly what you need. It'll iterate over all of your data and generate individual test cases for each number.
Link
这可以在 MBUnit 中使用“RowTest”测试方法来完成。 然而,我不知道在 NUnit 中执行此操作的方法。
This can be done in MBUnit using a "RowTest" test method. I'm not aware of a way of doing this in NUnit, however.