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

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