예제 #1
0
        public void TestAddCategory()
        {
            _repo.AddCategories(new Category()
            {
                Categoryid   = "C0009",
                Categoryname = "Iron1",
                Briefdetails = "iron"
            });
            var result = _repo.ViewCategory();

            Assert.NotNull(result);
        }