gpt4 book ai didi

java - 为什么这个断言不起作用 - assertThat(foo, is(not(null)));

转载 作者:行者123 更新时间:2023-11-30 08:18:32 25 4
gpt4 key购买 nike

此断言编译但失败,即使我知道 foo 不为 null 的事实:

import static org.hamcrest.Matchers.is;  // see http://stackoverflow.com/a/27256498/2848676
import static org.hamcrest.Matchers.not;
import static org.hamcrest.MatcherAssert.assertThat;

...

assertThat(foo, is(not(null)));

最佳答案

根据经验,我发现这反而有效:

assertThat(foo, is(not(nullValue())));

关于java - 为什么这个断言不起作用 - assertThat(foo, is(not(null)));,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27497321/

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