public void GetAll()
        {
            ICategoryData _category = new CategoryData();
            CategoryBiz   category  = new CategoryBiz(_category);

            Assert.AreEqual(2, category.GetAll().list.Count());
        }
Ejemplo n.º 2
0
        public void GetAll()
        {
            CategoryBiz category = new CategoryBiz();

            Assert.AreEqual(2, category.GetAll().list.Count());
        }