public void OptionalPresentValueShouldCalculatedWithoutError()
        {
            //Act
            var exception = Record.Exception(() => FinancialCalculations.PresentValueOptional(new[] { 1.2, 2 }, 1.4));

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