gpt4 book ai didi

java - 为什么 hamcrest any(Myclass.class) 需要类型转换

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

我通常这样使用 Hamcrest:

doNothing().when(entityManagerMock).persist(any(Point.class));

然后我尝试在上面编写相同的语法:

doNothing().when(locationTagsMock).persistLocationTag(any(LocationTag.class));

但是我得到了编译错误这迫使我将我的代码重构为:

doNothing().when(locationTagsMock).persistLocationTag((LocationTag) any(LocationTag.class));

为什么突然需要类型转换?

我怎样才能避免它,如果有的话?

最佳答案

根据 Doppelganger 对 Using Mockito's generic "any()" method 的回答的评论,你在 hamcrest 的 any() 和 mockito 的 any() 之间有冲突。

关于java - 为什么 hamcrest any(Myclass.class) 需要类型转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26629051/

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