gpt4 book ai didi

java - 如何处理 Hamcrest 匹配器的此错误

转载 作者:太空宇宙 更新时间:2023-11-04 10:29:05 24 4
gpt4 key购买 nike

我使用 Hamcrest Matcher 库时收到以下错误。

"The method assertThat(T, Matcher) in the type Assert is not applicable for the arguments (List, AnyOf)"

我正在尝试的是示例代码

List<String> poster_path_image2;         
assertThat(poster_path_image2, anyOf(startsWith("https:"), startsWith("null")));

我需要检查 url 是否有效以及 null 值是否可接受。我是这个库的新手,并被这个错误难住了。

最佳答案

看起来poster_path_image2的类型是List。但匹配器 startsWith 只能在 String 上工作。检查变量的类型以及匹配器能够处理的内容。

也许您想获取列表的第一个元素或对列表中的每个项目重复断言。

String path = "your test String";       
assertThat(path, anyOf(startsWith("https:"), is(nullValue())));

我更改了第二个匹配器,因为我认为您想要检查您的字符串是否为 null,而不是它是否包含字符串值 "null"

关于java - 如何处理 Hamcrest 匹配器的此错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50243583/

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