Exemplo n.º 1
0
        public void to_string_returns_formatted_product_by_item_details()
        {
            var productByWeight = new ProductByWeight {
                ProductName = "Item", Weight = 2, Price = 3m
            };
            var expected = "Item $6 (2 items at $3 per lb)";

            Assert.Equal(expected, productByWeight.ToString());
        }