up vote 11 down vote favorite
7
share [g+] share [fb]

I'm looking for a book that includes methods of testing software from a software engineering perspective.

Specifically, I'm looking for a book that includes black box testing techniques (such as how to test software against different input, etc.), but also includes information about test-driven development/design, unit testing, etc.

What books fulfill these needs?

link|improve this question
I'd think some of the books mentioned in these top questions are what you're looking for: stackoverflow.com/questions/… (Although I cannot say for sure as I haven't read them.) – Jonik Apr 24 '09 at 22:00
I was looking for the same thing. – Tom Aug 15 '10 at 21:24
I'd recommend people interested in this topic to also check out The Checklist Manifesto by Atul Gawande. I've been using checklists for many things and it prevents many errors and takes a lot of stress out of many tasks. – duma Aug 20 '10 at 3:41
feedback

9 Answers

Code Complete has an extensive and comprehensive chapter on Unit Testing, though my older edition doesn't have TDD and I don't know about the newer one. Pragmatic Unit Testing with C#/Java (C# version) is also a good book, but more focused on unit testing in particular. And, for TDD, there is the authoritative book, Test-Driven Development: By Example.

link|improve this answer
feedback

You might want to check out

"Agile Testing: A Practical Guide for Testers and Agile Teams"

[http://www.amazon.com/Agile-Testing-Practical-Addison-Wesley-Signature/dp/0321534468/ref=sr_1_1?ie=UTF8&s=books&qid=1240892709&sr=8-1][1]

link|improve this answer
feedback

The granddaddy of engineering-focused software testing books (despite the title) is Glenford Myers' "The Art of Software Testing". Written in 1979, and still just as relevant today !

link|improve this answer
feedback

It's important to bear in mind that the practices referred to as unit testing are not a quality assurance activity, but a design activity.

The first edition Code Complete is definitely a good software craftsmanship book, and the second edition is a good update for the post-waterfall era.

link|improve this answer
feedback

Keep in mind that black box testing is more for code verification (that have you have good code), not that you're code is right. It's not the only testing you should do.

link|improve this answer
feedback

I am loving xUnit Test Patterns by Gerard Meszaros

link|improve this answer
feedback

I've ended up buying Test-Driven Development by Beck, and will buy A Practitioner's Guide to Software Test Design by Lee Copeland. The latter has sort of a recipe approach to software testing, which is exactly what I was looking for. Took a while to find a book like this, too; most software testing books seem to be heavy with reasons why software testing is good, theory, etc.

link|improve this answer
feedback

I think that "A Practitioner's Guide to Software Test Design" by Lee Copeland is too much abstract. Yes, I agree that it contains much fundamental things that are needed in the testing, but it is too much theoretical. I will suggest you "Lessons Learned in Software Testing"

link|improve this answer
That is a well-reviewed book on Amazon, but I had a class with Cem Kaner in school and he rubbed me the wrong way, so I think reading a book by him would be too difficult. – duma Mar 17 '10 at 0:37
Too difficult or too in wrong way. Can you please be more specific? – Tolsan Mar 18 '10 at 7:35
feedback

Try "software testing craftsman's approach"

http://www.amazon.com/Software-Testing-Craftsmans-Paul-Jorgensen/dp/084937345X

Ranges in price from $3 to $87.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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