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 …
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". …