Actually I'm doing some tests with Mockito.
I have the following class:
class BaseService {
public void save() {...}
}
public Childservice extends BaseService {
public void save(){
//some codes
super.save();
}
}
I want to mock only the second call (super.save) of the ChildService and do nothing so the test is successful. The first call must call the real method. Is there a way to do that?