Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created January 10, 2015 13:19
Show Gist options
  • Save javaeeeee/103fb65991739222682f to your computer and use it in GitHub Desktop.
Save javaeeeee/103fb65991739222682f to your computer and use it in GitHub Desktop.
A method used to show how to test exceptional situation using Mockito
public void showBalance() {
try {
BigDecimal balance = bankService.getBalance();
screen.displayBalance(balance);
} catch (BankServiceException e) {
screen.displayError(BANK_SERVICE_ERROR);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment