我如何使用Mockito模拟when ... thenReturn(class)?

时间:2019-08-20 11:28:02

标签: java mockito

我正在尝试使用Mockito模拟返回类型为Class<?>的值的方法。

    MethodParameter methodParam = mock(MethodParameter.class);
    Class<?> clazz = String.class;
    when(methodParam.getParameterType()).thenReturn(clazz);

这不起作用,因为thenReturn正在使用先前捕获的类(Class<<capture of ?>)。

有一些Mockito魔术可以让我做到吗?

0 个答案:

没有答案