Browse by Tags

All Tags » Iterative Development - Testing » Iterative Development - Refactoring (RSS)
I tested this method to be sure that it would work: [Test()] public void TestLoadingAndSavingFile() { TaskCollection collection = new TaskCollection(); Task task = new Task("Wash Car", "Auto"); task.Attributes.Add(new MetadataAttribute...
I found a bug with the MetadataAttribute; it seems no matter what, the value is coming back as a string. This is because I return the type from the value. I notice this problem with the loading/saving portion, and as such, I want to do this instead: public...
I wanted to ensure the central access to the tasks would work. In my other blog, I talked about centralized access in a windows application, where the root object could be accessible through the entire application. I created the following class: namespace...