コード例 #1
0
        public void ChangeProductPrice()
        {
            ProductTypeRepository repo = CreateRepository();

            repo.Clear();
            ProductType dryer = repo.CreateProduct(1, 263.00, "Very stronk pink hair dryer!!", 50);

            repo.ChangePrice(20, 1);

            Assert.AreEqual(20, dryer.Price);
        }