Example #1
0
        public void GetCategory_WithoutKeyword_ParentKeyword1()
        {
            // Act
            var category = _categoryTree.GetNode(201);

            // Assert
            Assert.AreEqual(200, category.ParentId);
            Assert.AreEqual("Computer", category.Name);
            Assert.AreEqual("Teaching", category.Keyword);
        }