Even for the little things. For example at a glance which would you rather see...
[TestSetUp]
public void TestSetUp()
{
}
[TestTearDown]
public void TestTearDown()
{
}
Or this..
[TestSetUp]
public void BeforeEachTest()
{
}
[TestTearDown]
public void AfterEachTest()
{
}
Language is important.. always be on the lookout for new ways you can improve your codes
communication abilities by relying on language. BDD is a perfect example of this...
posted @ Saturday, November 08, 2008 9:09 AM