Esempio n. 1
0
 public void CalculateCompoundInterest_Decimal_GivenPrincipalAndInterestRateAndNumberOfPoints_CompoundInterestReturned(decimal principal, decimal interestRate, int numberOfPoints, decimal resultExpected)
 {
     principal.CalculateCompoundInterest(interestRate, numberOfPoints).Should().Be(resultExpected);
 }