Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created January 10, 2015 13:13
Show Gist options
  • Save javaeeeee/28de7720ff761e349f06 to your computer and use it in GitHub Desktop.
Save javaeeeee/28de7720ff761e349f06 to your computer and use it in GitHub Desktop.
A simple method which doesn't need Test Doubles to be tested
boolean isTransactionPossible(final BigDecimal amount,
final BigDecimal balance) {
return balance.compareTo(amount) >= 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment