vote up 8 vote down star
11

I would consider myself fairly well versed in the concepts of Unit Testing. I am curious though if there is a publication that is considered the definitive book on Unit Testing.

This would be along the same lines as Martin Fowler's Refactoring: Improving the Design of Existing Code being considered (arguably) the definitive book on Refactoring.

flag

67% accept rate

9 Answers

vote up 7 vote down check

"Test Driven Development: by Example" and by Kent Beck is a very good introduction to TDD (he's the father after all) and unit testing.

xUnit patterns by Gerard Meszaros is more academic, but is longuish. I'd say it's the definitive reference on the topic.

link|flag
vote up 2 vote down

I'm fond of Pragmatic Unit Testing (C# and Java flavors) and the Code Complete chapter on testing.

link|flag
Pragmatic Unit Testing is great as an introductory text. We're reading it as a department right now to help many members of the team get up to speed on the basics. – Mike Jan 5 at 21:03
vote up 10 vote down

Test-Driven Development: By Example. You can ignore all the TDD methodology stuff if you're inclined to. Beck still shows how unit testing should be done.

link|flag
vote up 2 vote down

Test-Driven Development: By Example by Kent Beck

link|flag
vote up 0 vote down

Two books that I recommend: Test Driven Development: By Example and xUnit Test Patterns.

link|flag
vote up 2 vote down

As TDD and unit testing are so closely linked you may want to check out some of the resource in this question.

link|flag
I wouldn't say this is a dupe, and I did an extensive search on SO before posting. That post is related directly to TDD. My question is more generic Unit Testing, not necessarily in concert with TDD. – steve_c Jan 5 at 20:27
Just trying to direct you to some more resource I noticed that your accepted answer is TDD by example.. the 2 are linked which makes your decision to vote down incongruous. Perhaps you should edit your question to state that you are not interested in TDD? – John Nolan Jan 5 at 20:33
That may be the case, but you stated this question was somewhat of a duplicate, which it isn't. Perhaps you should edit your answer if you are interested in linking to some additional resources. – steve_c Jan 5 at 20:49
No way I'm right and you are wrong.... Only joking ;) – John Nolan Jan 5 at 20:54
:) I removed my downvote. Thanks, John!! – steve_c Jan 5 at 22:14
vote up 0 vote down

I'd consider investing the time & money on "Pragmatic Unit testing" from the Pragmatic series, another book I recommend is "The Pragmatic Programmer"

link|flag
vote up 0 vote down

I would recommend The Art of Unit Testing by Roy Osherove.

It should be up to date with the latest practices and could well become the definitive guide as Roy has tried to provide an unbiased opinion and he is one of the leading experts on this subject.

link|flag
vote up 3 vote down

"Working Effectively With Legacy Code" by Micheal Feathers. The definitive guide on applying unit tests to existing code.

link|flag

Your Answer

Get an OpenID
or

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