Is there any way to mock something like this:
when(mock.methodCall(Class::gettter)).willReturn(...)
when(mock.methodCall(Class::gettter2)).willReturn(...)
Header for methodCall
methodCall(Function<Class, String> function)
When I use ArgumentMatchers.eq(...)
mock does not return value from willReturn