Insights and outlooks on software development

S'true

It's the small things

Monday, February 11, 2008 by Thomas L

instead of doing

Assert.AreEqual(3, myList.Count) // Do stuff that shouldn't change count Assert.AreEqual(3, myList.Count)

do this:

int count = myList.Count // Do stuff that shouldn't change count Assert.AreEqual(count, myList.Count)

Filed under having  

0 kommentarer: