Ejemplo n.º 1
0
        public void GetAllProducts()
        {
            var response = Products.GetProducts();

            response.StatusCode.Should().Be(HttpStatusCode.OK);
            var products = JsonConvert.DeserializeObject <ProductsObject>(response.Content);

            // This will fail. There are some precreated products already
            products.Items.Count.Should().Be(2, $"Expected number of products 2, but got {products.Items.Count}");
        }