本文介绍了JUnit中的失败和错误有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在大型代码库上运行JUnit测试,我一直意识到有时候我会得到错误,而有时候我会得到失败。有什么不同?
I'm running JUnit tests on a large code base, and I've been realizing that sometimes I get "Errors" while other times I get "Failures". What's the difference?
推荐答案
好的,我刚刚注意到一种模式并认为我已经弄明白了我错了)。在我看来,失败是在你的测试用例失败时 - 即你的断言不正确。错误是在尝试实际运行测试时发生的意外错误 - 异常等。
Ok, I've just noticed a pattern and think I've figured it out (correct me if I'm wrong). It seems to me that failures are when your test cases fail - i.e. your assertions are incorrect. Errors are unexpected errors that occur while trying to actually run the test - exceptions, etc.
这篇关于JUnit中的失败和错误有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!