A software testing book from an engineering perspective? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T10:24:55Zhttp://stackoverflow.com/feeds/question/781952http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective4A software testing book from an engineering perspective?parsifal2009-04-23T14:16:52Z2009-08-13T16:00:49Z
<p>I'm looking for a book that includes methods of testing software from a software engineering perspective.</p>
<p>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.</p>
<p>What books fulfill these needs?</p>
http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/782038#7820381Answer by tvanfosson for A software testing book from an engineering perspective?tvanfosson2009-04-23T14:34:53Z2009-04-23T14:34:53Z<p><a href="http://www.cc2e.com/" rel="nofollow">Code Complete</a> 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 (<a href="http://www.pragprog.com/titles/utc2/pragmatic-unit-testing-in-c-with-nunit" rel="nofollow">C# version</a>) is also a good book, but more focused on unit testing in particular. And, for TDD, there is the authoritative book, <a href="http://www.amazon.com/exec/obidos/ISBN=0321146530" rel="nofollow">Test-Driven Development: By Example</a>.</p>
http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/787697#7876970Answer by Tetsujin no Oni for A software testing book from an engineering perspective?Tetsujin no Oni2009-04-24T21:48:11Z2009-04-24T21:54:27Z<p>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.</p>
<p><P>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.</p></p>
http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/796199#7961990Answer by Tom Lo for A software testing book from an engineering perspective?Tom Lo2009-04-28T04:20:10Z2009-04-28T04:20:10Z<p>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.</p>
http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/796218#7962180Answer by Rob Scott for A software testing book from an engineering perspective?Rob Scott2009-04-28T04:27:59Z2009-04-28T04:27:59Z<p>You might want to check out </p>
<p>"Agile Testing: A Practical Guide for Testers and Agile Teams"</p>
<p>[<a href="http://rads.stackoverflow.com/amzn/click/0321534468" rel="nofollow">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</a>][1]</p>
http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/831597#8315970Answer by Davide for A software testing book from an engineering perspective?Davide2009-05-06T20:33:36Z2009-05-06T20:33:36Z<p>I am loving <a href="http://books.google.com/books?id=mwaXAAAACAAJ" rel="nofollow">xUnit Test Patterns</a> by <a href="http://www.gerardmeszaros.com" rel="nofollow">Gerard Meszaros</a> </p>
http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/1272827#12728270Answer by parsifal for A software testing book from an engineering perspective?parsifal2009-08-13T15:47:35Z2009-08-13T15:47:35Z<p>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.</p>
http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/1272913#12729130Answer by gareth_bowles for A software testing book from an engineering perspective?gareth_bowles2009-08-13T16:00:49Z2009-08-13T16:00:49Z<p>The granddaddy of engineering-focused software testing books (despite the title) is Glenford Myers' <a href="http://rads.stackoverflow.com/amzn/click/0471469122" rel="nofollow">"The Art of Software Testing"</a>. Written in 1979, and still just as relevant today !</p>