Пример #1
0
        public void GetProductCategory()
        {
            List <ProductCategory> categoryList = _productCategoryManager.GetProductCategorylist();

            Assert.Empty(categoryList);

            _productCategoryManager.AddProductCategoryToList(_productCategory);

            categoryList = _productCategoryManager.GetProductCategorylist();
            Assert.True(categoryList.Count > 0);
            Assert.Equal("Shoes", _productCategory.CategoryName);
        }