views:

87

answers:

5

Where can I find good literature on unit testing? Book titles and links are welcome.

A: 

The Art Of Unit Testing

Thomas Weller
+2  A: 

xUnit Test Patterns: Refactoring Test Code

trendl
+1 this is the only book I've ever bought on unit testing, and the only one that actually taught me something useful even just flipping through it. Not necessarily a good book for beginners, as it has a lot of focus on the whys, not just the hows.
Rodney Gitzel
+1  A: 

Pragmatic Unit Testing is a decent introduction to the why and some of the how. I read the Java one even as I was primarily interested in C++, and the lessons still came through quite clearly.

Caleb Huitt - cjhuitt