Ejemplo n.º 1
0
        public void ComputesCoffeeWithMilkCreamAndCinnamonPrice()
        {
            var coffeeWithMilkAndCream =
                BeverageFactory.CreateCoffeeWithMilkCreamAndCinnamon();

            Assert.Equal(1.50, coffeeWithMilkAndCream.Price(), 3);
        }