January 2005 - Posts
It's been awhile but I have been pretty busy. I know both of these were delivered yesterday (28 January 2005) but I wanted to alert you to two new items from the patterns & practices team if you have not already heard. The first one is Enterprise
Read More...
In the previous post I refactored the storage mechanism to store a label and a Bookmark object. This step along with the previous one makes me think that the name of the class, BookmarkCollection needs to be changed. At this point I think it should be
Read More...
Would you like to work on a development team that includes people like Ward Cunningham, David Trowbridge, Peter Provost , Scott Densmore , Sandy Khaund , to name a few? We just opened two new positions in the patterns & practices development team.
Read More...
As I mentioned in the last post I did not like that I had to create a new Bookmark when iterating over the Bookmarks. Instead of creating a new Bookmark every time let’s store them in the dictionary. I need to change the declaration of the dictionary
Read More...
The test that I'm going to implement this time is the following: Add 3 Bookmarks, call GetEnumerator and verify that the 3 Bookmarks are enumerated 3 seems excessive, I think 2 will be sufficient; here is the test: [ Test ] public void EnumeratorContainsOnlyAddedItems()
Read More...