public void UnitTest_CalcStockPresentValueWithZeroGrowth()
        {
            var result = StocksBondsFormulas.CalcStockPresentValueWithZeroGrowth(20, 0.04m);

            Assert.Equal(500, Math.Round(result, 2, MidpointRounding.AwayFromZero));
        }