private void TestPERatio(String symbol, Decimal marketPrice, Decimal expected)
        {
            stockManagementService.UpdateMarketPrice(symbol, marketPrice);
            Decimal yield = stockManagementService.GetPERatio(symbol);

            Assert.AreEqual(expected, yield, String.Format("Failed to assert P/E ratio for {0}", symbol));
        }