up vote 33 down vote favorite
31
share [g+] share [fb]

I'd like to enhance my TDD knowledge and practice. What would you recommend to read?

link|improve this question

feedback

closed as not constructive by Jeremy Banks, Jeff Atwood Sep 15 '11 at 7:17

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

14 Answers

up vote 25 down vote accepted

The Art of Unit Testing by Roy Osherove is a very readable, modern introduction to the practice, covering such topics as use of mocking frameworks and how best to organize tests.

Michael Feather's Working Effectively with Legacy Code provides a wealth of great examples and ideas for how to make code testable. Ideal for those situations you will face when you find yourself thinking "well, how on earth can I test this?"

Kent Beck's classic Test-Driven Development - By Example is a good read, quite witty and entertaining.

If you want something dry but staggeringly comprehensive, which also helps with muscle-building, consider Gerard Meszaros' xUnit Test Patterns - Refactoring Test Code.

Test-Driven Development in Microsoft .NET is an OK read, but somewhat wed to the DataSet style of doing data access, which seems a bit old school these days.

link|improve this answer
feedback

I would recomend Test Driven Development: By Example , and reviews on Amazon are good.

link|improve this answer
feedback
  • Test Driven Development By Example : Kent Beck From THE MAN himself. Lucid, short, to the point - I wish I had his clarity when he works his magic with TDD.
  • Extreme Programming Adventures in C# : Ron Jeffries Fly on the wall look at how it works in the wild - Solo account though by Ron as he builds himself a thingmajig
  • Refactoring : Martin Fowler, Beck, et.all You will be seriously handicapped without this one. This is the third and most often forgotten leg of the TDD stool

I have Dave Astel's TDD a Practical guide on my To-Read shelf. Hear its good. This set should get you started, then you could progress to go into what makes good tests (Pragmatic Unit testing), continuous Integration... towards XP:Embrace Change.

Update 2010: The next step up would be
Growing Object Oriented Software Guided By Tests - Steve Freeman & Nat Pryce. All praise deserved.

link|improve this answer
feedback

Growing Object-Oriented Software Guided by Tests

It is future classics like Test-driven development: by example

And new classics about refactoring: Refactoring to patterns

link|improve this answer
feedback

I recommend the Astels first, and then go back to the Beck for deeper understanding. Oh, and there's this in progress (sorry, couldn't resist).

link|improve this answer
feedback

David Astel's Test Driven Development: A practical guide is less dry than Kent Beck's Test Driven Development: By Example which actually isn't bad read. Both Kent and David are great speakers you may want to check some of their talks.

Kent's talk developer testing
David's video on BDD

link|improve this answer
feedback

In addition the books listed, I have also read and enjoyed: -

But it would also be good for you to look at: -

As this book contains lots of interesting information on patterns used whilst refactoring tests.

link|improve this answer
feedback

Test Driven Development: By Example and Extreme Programming Explained, both by Kent Beck, are IMHO the Bibles of TDD.

link|improve this answer
feedback

Extreme Programming Explained by Kent Beck. This will give you the basics about why pair-programming and writing tests upfront is the way to go.

link|improve this answer
feedback

G'day,

While not a book Kent Beck's IT Conversations talk about TDD, and other things, is really interesting.

cheers, Rob

link|improve this answer
feedback

If you're a Java developer, I'd recommend Test Driven:TDD and Acceptance TDD for Java developers. Even if you don't come from Java background, it should be an interesting read.

link|improve this answer
feedback

The problem with most TDD books is that they are too trivial. The basic rules of TDD are really simple: write test, write production code, refactor.

The big problem is to write maintainable tests for a large system. I have yet to encounter a book that describes this in a good way. And I doubt there will ever be a good book on the subject and the reason is that it's like teaching how to ride a bike: you can describe the underlying physics and the techniques, but in the end what you must do is practice, practice, practice.

But to answer the question:

TDD by Example by Kent Beck is the original source which makes it worth reading for historical reasons. The craft of TDD has developed a lot since though (with BDD as the biggest change) and therefore the book is no longer a good book to start with.

Dave Astel's book is also pre-BDD and has the same shortcomings. It does have more more real world examples though.

The best source I have read is Koskela's Test-Driven. It discusses tests from a behavioral point of view and has got some real world examples. It says it's for Java developers, but the Java code is simple enough for any developer to understand.

Some books mentioned in other answers are really good (like Feather's Legacy book, Refactoring, xUnit Patters etc), but they are probably not something you should start with.

Disclaimer: I haven't read any TDD book newer than four years old, so there might be some good recent books that I have missed.

link|improve this answer
Try the GOOS-GBT book by freeman n pryce – Gishu Feb 15 '11 at 14:50
feedback

I would recommend Test Driven Development: By Example

Test-Driven Development: A Practical Guide is pretty good too.

link|improve this answer
feedback

I recently wrote a blog post on this topic. You can check out the list and links here: http://ellisteam.blogspot.com/2010/11/best-books-on-tdd-agile-and-scrum-by.html

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.