Пример #1
0
        public void CanUpdatePCWithPrice()
        {
            var x = new PC("Age of Empires", "Strategy", "Microsoft Games", "PC", 30);

            x.CalculatePrice();

            Assert.IsTrue(x.Ust != 0);
            Assert.IsTrue(x.Price > 30);
        }