vote up 4 vote down star
3

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?

flag

0% accept rate
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 at 22:00

7 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

I am loving xUnit Test Patterns by Gerard Meszaros

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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