Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FagnerMartinsBrack/e626c294f34d053b6db5e5bcd0ff29df to your computer and use it in GitHub Desktop.
Save FagnerMartinsBrack/e626c294f34d053b6db5e5bcd0ff29df to your computer and use it in GitHub Desktop.
(Medium) - How TDD Can Prevent Over-Engineering
const interestToPayFor = (loanAmount) => {
const greaterThan2000 = { endOfRange: Money('$2000.00'), interestPerDollar: Money('$0.09'), previousInterestPerDollar: Money('$0.00') };
const greaterThan5000 = { endOfRange: Money('$5000.00'), interestPerDollar: Money('$0.14'), previousInterestPerDollar: Money('$0.09') };
const greaterThan10000 = { endOfRange: Money('$10000.00'), interestPerDollar: Money('$0.21'), previousInterestPerDollar: Money('$0.14') };
if (loanAmount.greaterThan(Money('$2000.00')) && loanAmount.lessThan(Money('$5001.00'))) {
let interestAmount = Money('$0.00');
interestAmount = interestAmount.plus(calculateInterest(loanAmount, greaterThan2000));
return interestAmount;
}
if (loanAmount.greaterThan(Money('$5000.00')) && loanAmount.lessThan(Money('$10001.00'))) {
let interestAmount = Money('$0.00');
interestAmount = interestAmount.plus(calculateInterest(loanAmount, greaterThan2000));
interestAmount = interestAmount.plus(calculateInterest(loanAmount, greaterThan5000));
return interestAmount;
}
if (loanAmount.greaterThan(Money('$10000.00'))) {
let interestAmount = Money('$0.00');
interestAmount = interestAmount.plus(calculateInterest(loanAmount, greaterThan2000));
interestAmount = interestAmount.plus(calculateInterest(loanAmount, greaterThan5000));
interestAmount = interestAmount.plus(calculateInterest(loanAmount, greaterThan10000));
return interestAmount;
}
return Money('$0.00');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment