以“方法参考”为参数的模拟方法调用

时间:2018-11-28 07:15:32

标签: java java-8 mockito method-reference

有没有办法模拟这样的东西:

when(mock.methodCall(Class::gettter)).willReturn(...)
when(mock.methodCall(Class::gettter2)).willReturn(...)

methodCall的标题

methodCall(Function<Class, String> function)

当我使用ArgumentMatchers.eq(...)时,模拟不会从willReturn返回值

0 个答案:

没有答案