views:

361

answers:

5

Can people recommend books and other resources on unit testing? All levels from beginning to advanced techniques.

+3  A: 

I reckon the definitive guide is probably xUnit Test Patterns

toolkit
+1  A: 
Alan
+3  A: 

This question has already been asked. Look here for results.

Gishu
+1  A: 

As tools I recommend:

Runners

  • NUnit
  • MBUnit
  • jUnit

Continuous Integration

Tools that combine with runners to have tests run at each commit

  • CruiseControl
  • CruiseControl.NET

On top of these people often use Mocking frameworks and other stuff. I think it's a bit overkill to start with everything...

Sklivvz
+1  A: 

I recommend Kent Beck's book: Test Driven Development: By Example

Alejandro Bologna