JUnit 断言ArrayEquals
我编写了一个返回 int[] 的方法。我想创建一个测试,确保当我运行我的方法时,将 10 传递给该方法,它返回一个 int[]{0,1,3,5,7}。
我该怎么做?也许我只是缺少正确的语法或者应该使用不同的断言方法......?
I've written a method that returns an int[]. I want to create a test that ensures that when I run my method, passing, say, 10 to the method, that it returns an int[]{0,1,3,5,7}.
How can I do this? Maybe I'm just missing the proper syntax or should be using a different assert method...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 JUnit4,则可以使用 org.junit.Assert 类:
If you are using JUnit4, you could use the
org.junit.Assert
class: