A software testing book from an engineering perspective? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:24:55Z http://stackoverflow.com/feeds/question/781952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective 4 A software testing book from an engineering perspective? parsifal 2009-04-23T14:16:52Z 2009-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#782038 1 Answer by tvanfosson for A software testing book from an engineering perspective? tvanfosson 2009-04-23T14:34:53Z 2009-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#787697 0 Answer by Tetsujin no Oni for A software testing book from an engineering perspective? Tetsujin no Oni 2009-04-24T21:48:11Z 2009-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#796199 0 Answer by Tom Lo for A software testing book from an engineering perspective? Tom Lo 2009-04-28T04:20:10Z 2009-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#796218 0 Answer by Rob Scott for A software testing book from an engineering perspective? Rob Scott 2009-04-28T04:27:59Z 2009-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&amp;s=books&amp;qid=1240892709&amp;sr=8-1</a>][1]</p> http://stackoverflow.com/questions/781952/a-software-testing-book-from-an-engineering-perspective/831597#831597 0 Answer by Davide for A software testing book from an engineering perspective? Davide 2009-05-06T20:33:36Z 2009-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#1272827 0 Answer by parsifal for A software testing book from an engineering perspective? parsifal 2009-08-13T15:47:35Z 2009-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#1272913 0 Answer by gareth_bowles for A software testing book from an engineering perspective? gareth_bowles 2009-08-13T16:00:49Z 2009-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>