public void ShouldUpdateCategory()
 {
     Assert.AreEqual(true, CategoryScope.UpdateCategoryScopeIsValid(category, "processador"));
 }
        public void ShouldNotCreateCategoryWithoutName()
        {
            var category = new Category("");

            Assert.AreEqual(false, CategoryScope.ValidName(category));
        }
 public void ShouldRegisterCategory()
 {
     Assert.AreEqual(true, CategoryScope.CreateCategoryScopeIsValid(category));
 }
        public void ShouldCreateCategory()
        {
            var category = new Category("Esportes");

            Assert.AreEqual(true, CategoryScope.ValidName(category));
        }