Exemple #1
0
        public void ProductStoreShouldGetProductById(int productId)
        {
            var product = productStore.GetProductbyId(productId);

            Assert.That(product.Id == productId);
        }