public void ShouldNotCreateCategoryWithoutName()
        {
            var category = new Category("");

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

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