Set<? extends Car> getCars()
是否可以在没有抑制警告的情况下模拟(使用 mockito)带有签名的方法?我试过了:
XXX cars = xxx;
when(owner.getCars()).thenReturn(cars);
但无论我如何声明,cars
我总是会遇到编译错误。例如,当我这样声明时
Set<? extends Car> cars = xxx
我得到标准的通用/模拟编译错误
The method thenReturn(Set<capture#1-of ? extends Car>) in the type OngoingStubbing<Set<capture#1-of ? extends Car>> is not applicable for the arguments (Set<capture#2-of ? extends Car>)