Exemplo n.º 1
0
 public void test_for_each_item_cost(string sku, decimal pricePerUnit)
 {
     _shoppingCart.AddProductToCart(new Product()
     {
         Sku = sku, Unitprice = pricePerUnit
     });
     Assert.That(_shoppingCart.CheckOut(), Is.EqualTo(pricePerUnit));
 }