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