Exemple #1
0
        public void ProductStoreShouldGetProductBySku(string sku)
        {
            var product = productStore.GetProductBySku(sku);

            Assert.That(product.Sku == sku);
            fileHandler.Verify(x => x.ReadAll(It.IsAny <string>()), Times.Once);
        }