mockitos crap
How to make mock to void methods with mockito
doAnswer(i -> {
((Runnable) i.getArguments()[0]).run(); // ! нужно сделать i.callRealMethod()
return null;
}).when(executor).execute(any());
https://stackoverflow.com/questions/2276271/how-to-make-mock-to-void-methods-with-mockito
doAnswer(i -> {
((Runnable) i.getArguments()[0]).run(); // ! нужно сделать i.callRealMethod()
return null;
}).when(executor).execute(any());
https://stackoverflow.com/questions/2276271/how-to-make-mock-to-void-methods-with-mockito
mockbean это по умолчанию вырубаются все вызовы методов.
поэтому spybean чтобы замокать только те что надо?
https://stackoverflow.com/questions/11620103/mockito-trying-to-spy-on-method-is-calling-the-original-method
Комментарии
Отправить комментарий