我正在尝试使用Mockito模拟返回类型为Class<?>
的值的方法。
MethodParameter methodParam = mock(MethodParameter.class);
Class<?> clazz = String.class;
when(methodParam.getParameterType()).thenReturn(clazz);
这不起作用,因为thenReturn
正在使用先前捕获的类(Class<<capture of ?>
)。
有一些Mockito魔术可以让我做到吗?