Search Results

2
votes

How do you know what to test when writing unit tests?

Testing boilerplate code is a waste of time, but as Slavo says, if you add a side effect to your getters/setters, then you should write a test to accompany that functionality. If you're doi …
1
vote

Strategies for incorporating Unit Testing into an old project

Retrofitting unit tests is hard work. I'd start by setting up a code coverage tool, then just chip away a bit at a time, starting from the last part of the code I touched. Also, make sure …
3
votes

Managing the maintenance burden of unit tests

Unit tests should be fairly immutable. If you're writing a test, writing code to get that test to pass, and breaking your other tests, then your new code should be considered "wrong". …