"Also make sure the method is not final - you cannot stub final methods."
));
}
public void unfinishedVerificationException() {
throw new UnfinishedVerificationException(join(
"Previous verify(mock) doesn't have a method call!",
"Example of correct verification:",
" verify(mock).doSomething()",
"Also make sure the method is not final - you cannot verify final methods."
));