gpt4 book ai didi

junit - 断言 JUnit 中的列表不为空

转载 作者:行者123 更新时间:2023-12-03 07:54:08 24 4
gpt4 key购买 nike

我想断言 JUnit 4 中的列表不是空的,当我搜索它时,我发现了这篇文章:Checking that a List is not empty in Hamcrest这是使用 Hamcrest。

assertThat(result.isEmpty(), is(false));

这给了我这个错误:

The method is(boolean) is undefined for the type MaintenanceDaoImplTest



我怎么能不使用 Hamcrest .

最佳答案

你可以简单地使用

assertFalse(result.isEmpty());

关于您的问题,这只是由于您忘记静态导入 is() 造成的。来自 Hamcrest 的方法;
import static org.hamcrest.CoreMatchers.is;

关于junit - 断言 JUnit 中的列表不为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35453873/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com