是否可以使用签名Set<? extends Car> getCars()
进行模拟(使用mockito)方法而不使用抑制警告?我试过了:
XXX cars = xxx;
when(owner.getCars()).thenReturn(cars);
但无论我如何声明cars
我总是得到编译错误。
例如,当我宣布像这样
Set<? extends Car> cars = xxx
我得到标准的通用/ mockito编译错误
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>)
答案 0 :(得分:31)
使用doReturn-when备用存根语法。
受测试系统:
public class MyClass {
Set<? extends Number> getSet() {
return new HashSet<Integer>();
}
}
和测试用例:
import static org.mockito.Mockito.*;
import java.util.HashSet;
import java.util.Set;
import org.junit.Test;
public class TestMyClass {
@Test
public void testGetSet() {
final MyClass mockInstance = mock(MyClass.class);
final Set<Integer> resultSet = new HashSet<Integer>();
resultSet.add(1);
resultSet.add(2);
resultSet.add(3);
doReturn(resultSet).when(mockInstance).getSet();
System.out.println(mockInstance.getSet());
}
}
无需错误或警告抑制