通用assertThat(ArrayList, hasItems(InstanceOfSomeInterface)) 不起作用

发布于 2024-12-04 15:26:24 字数 528 浏览 0 评论 0 原文

我想将 Hamcrest 的 hasItems 与“实际”集合一起使用,该集合是 ArrayList

assertThat(ArrayList<? extends SomeInterface>, hasItems(InstanceOfSomeInterface))

编译器

说:

类型 Assert 中的方法 assertThat(T, Matcher) 不适用于参数 (ArrayList, Matcher>)

出了什么问题?我能做什么(我真的想在这里使用 Hamcrest)?

i want to use Hamcrest’s hasItems with an "actual" collection that is an ArrayList<? extends SomeInterface>
on

assertThat(ArrayList<? extends SomeInterface>, hasItems(InstanceOfSomeInterface))

the compiler says:

The method assertThat(T, Matcher<T>) in the type Assert is not applicable for the arguments (ArrayList<capture#9-of ? extends MyInterface>, Matcher<Iterable<MyInterface>>)

what is going wrong? What can i do about that (i really want to use Hamcrest here)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

此岸叶落 2024-12-11 15:26:24
ArrayList<SomeInterface> newList = new ArrayList<SomeInterface>();
newList.addAll(origList);
assertThat(newList, hasItems(InstanceOfSomeInterface));

不幸的是 Assert.assertThat 没有使用 进行编码?超级还是?扩展以允许您所描述的内容。

ArrayList<SomeInterface> newList = new ArrayList<SomeInterface>();
newList.addAll(origList);
assertThat(newList, hasItems(InstanceOfSomeInterface));

It is unfortunate that Assert.assertThat was not coded using ? super or ? extends to allow for what you describe.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文