如何断言字符串不为空
2022-09-01 02:20:32
断言 a 在 junit 中不为空可以通过以下方式完成:string
assertTrue(!string.isEmpty());
assertFalse(string.isEmpty());
assertThat(string.toCharArray(), is(not(emptyArray())); // (although this didn't compile)
我的问题是:有没有更好的方法来检查这一点 - 比如:
assertThat(string, is(not(empty()))
?