Exemple #1
0
        public void priceLevel()
        {
            int offerPrice     = 220;
            int oringinalPrice = 200;
            //return the computer purchase level(from 1 to 3)
            price sys = new price();

            sys.getPriceLevel(offerPrice, oringinalPrice);
            Assert.AreEqual(4, sys.getPriceLevel(offerPrice, oringinalPrice));
        }