public void CollectionsHaveValues()
        {
            var todo = new Todo("Todo 1");

            todo.CheckAttributes();
            Assert.NotEmpty(todo.GetCheckboxAttributes());
            Assert.NotEmpty(todo.GetDescriptionAttributes());
        }