public void FutureValueShouldCalculatedWithoutError()
        {
            //Act
            var exception = Record.Exception(() => FinancialCalculations.FutureValue(1.4, 48, 60000, 120000, DueDate.EndOfPeriod));

            //Assert
            exception.Should().BeNull();
        }