如何断言比使用JUnit声明更大?

如何断言比使用JUnit声明更大?,第1张

如何断言比使用JUnit声明更大?

只是您的 *** 作方式。

assertTrue(boolean)
还有一个过载
assertTrue(String,boolean)
String
如果发生故障,消息是;如果要打印某某某物的大小不超过某某某物的大小,则可以使用它。

您也可以添加

hamcrest-all
依赖项以使用匹配器。参见https://pre.google.com/p/hamcrest/wiki/Tutorial:

import static org.hamcrest.MatcherAssert.assertThat;import static org.hamcrest.Matchers.*;assertThat("timestamp",Long.parseLong(previousTokenValues[1]),greaterThan(Long.parseLong(currentTokenValues[1])));

这给出了类似的错误:

java.lang.AssertionError: timestampExpected: a value greater than <456L>     but: <123L> was less than <456L>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5133617.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存