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 …
20
votes
Best Practices of Test Driven Development Using C# and RhinoMocks
Definitely a good list. Here are a few thoughts on it:
Write the test first, then the code.
I agree, at a high level. But, I'd be more …
2
votes
What is the equivalent to JUnit in C#?
Regarding your question about unit test frameworks:
NUnit 1.0 was a direct port of JUnit. NUnit 2.0 moved away from JUnit syntax in o …
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 ( …
