GIVEN:
dao.myMethod(SeatLicense seatLicense) which return void.
HOW TO MOCK SUCH METHOD:
Mockito.doNothing().when(dao).myMethod(Mockito.any(SeatLicense.class));
Distributed & scalable systems, Test Driven Development… and simply how to get things done!
dao.myMethod(SeatLicense seatLicense) which return void.
Mockito.doNothing().when(dao).myMethod(Mockito.any(SeatLicense.class));