只是您的 *** 作方式。
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>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)