Search Results

1
vote

Unit Testing Guidelines

Josh's answer is right on - just one point of clarification: The reason I separate unit tests from integration and acceptance tests is speed. I use TDD. I need close to instant feedback a …
2
votes

What would you do when you are about to add some new features to a large (and dirty) codebase which has virtually *NO* unit-testing code?

Fowler also suggests that you never refactor without the safety of tests. But, how do you get those tests in place? And, how far do you go? The previously recommended book ( …