我使用 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"
。
我是一名优秀的程序员,十分优秀!