使用 junit4 进行单元测试
我如何在junit4中创建测试套件?
how do i create a test suite in junit4 ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我如何在junit4中创建测试套件?
how do i create a test suite in junit4 ??
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这是一个例子:
Here is one example:
单元测试非常简单,并且通过一个简单的示例可以得到最好的解释。
我们将使用以下类计算数组的平均值:
我们的 JUnit 测试现在将测试此方法的一些基本操作:
前两个测试用例将表明我们正确实现了该方法,但最后一个测试用例将失败。
但为什么?
数组的长度为零,我们正在除零。浮点数除以零不是数字 (NaN),也不是零。
Unit Testing is really easy and best explained on a simple example.
We'll have the following class calculating the average of an array:
Our JUnit test will now test some basic operations of this method:
The first two test cases will show that we implemented the method correct, but the last test case will fail.
But why?
The length of the array is zero and we are diving by zero. A floating point number divided by zero is not a number (NaN), not zero.