标签: 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返回值
ArgumentMatchers.eq(...)
willReturn