What is 'the' definitive book on Unit Testing? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T05:12:08Z http://stackoverflow.com/feeds/question/413665 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing 8 What is 'the' definitive book on Unit Testing? steve_c 2009-01-05T16:26:29Z 2009-01-06T11:56:58Z <p>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 <strong><em>the</em></strong> definitive book on Unit Testing. </p> <p>This would be along the same lines as Martin Fowler's <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring: Improving the Design of Existing Code</a> being considered (arguably) the definitive book on Refactoring.</p> http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/413670#413670 2 Answer by tvanfosson for What is 'the' definitive book on Unit Testing? tvanfosson 2009-01-05T16:28:16Z 2009-01-05T16:28:16Z <p>I'm fond of Pragmatic Unit Testing (<a href="http://www.pragprog.com/titles/utc2/pragmatic-unit-testing-in-c-with-nunit" rel="nofollow">C#</a> and <a href="http://www.pragprog.com/titles/utj/pragmatic-unit-testing-in-java-with-junit" rel="nofollow">Java</a> flavors) and the <a href="http://cc2e.com/" rel="nofollow">Code Complete</a> chapter on testing.</p> http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/413679#413679 9 Answer by Bill the Lizard for What is 'the' definitive book on Unit Testing? Bill the Lizard 2009-01-05T16:31:50Z 2009-01-05T16:31:50Z <p><a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow">Test-Driven Development: By Example</a>. You can ignore all the TDD methodology stuff if you're inclined to. Beck still shows how unit testing should be done.</p> http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/413685#413685 2 Answer by Garry Shutler for What is 'the' definitive book on Unit Testing? Garry Shutler 2009-01-05T16:32:54Z 2009-01-05T16:32:54Z <p><a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow">Test-Driven Development: By Example</a> by <a href="http://en.wikipedia.org/wiki/Kent_Beck" rel="nofollow">Kent Beck</a></p> http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/413691#413691 0 Answer by Stephen Doyle for What is 'the' definitive book on Unit Testing? Stephen Doyle 2009-01-05T16:34:41Z 2009-01-05T16:34:41Z <p>Two books that I recommend: <a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow">Test Driven Development: By Example</a> and <a href="http://rads.stackoverflow.com/amzn/click/0131495054" rel="nofollow">xUnit Test Patterns</a>.</p> http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/414298#414298 7 Answer by philippe for What is 'the' definitive book on Unit Testing? philippe 2009-01-05T19:56:52Z 2009-01-05T19:56:52Z <p>"Test Driven Development: by Example" and by Kent Beck is a <strong>very good introduction</strong> to TDD (he's the father after all) and unit testing. </p> <p>xUnit patterns by Gerard Meszaros is more academic, but is longuish. I'd say it's the <strong>definitive reference</strong> on the topic.</p> http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/414372#414372 2 Answer by John Nolan for What is 'the' definitive book on Unit Testing? John Nolan 2009-01-05T20:23:26Z 2009-01-05T20:56:07Z <p>As TDD and unit testing are so closely linked you may want to check out some of the resource in this <a href="http://stackoverflow.com/questions/31837/best-books-about-tdd">question</a>.</p> http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/414518#414518 0 Answer by joeysim for What is 'the' definitive book on Unit Testing? joeysim 2009-01-05T21:03:28Z 2009-01-05T21:03:28Z <p>I'd consider investing the time &amp; money on "<a href="http://www.pragprog.com/titles/utc2/pragmatic-unit-testing-in-c-with-nunit" rel="nofollow">Pragmatic Unit testing</a>" from the Pragmatic series, another book I recommend is "The Pragmatic Programmer"</p> http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/414570#414570 0 Answer by Campbell for What is 'the' definitive book on Unit Testing? Campbell 2009-01-05T21:19:59Z 2009-01-05T21:19:59Z <p>I would recommend <a href="http://the.artofunittesting.com/" rel="nofollow">The Art of Unit Testing</a> by Roy Osherove.</p> <p>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.</p> http://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing/416247#416247 3 Answer by MrWiggles for What is 'the' definitive book on Unit Testing? MrWiggles 2009-01-06T11:56:58Z 2009-01-06T11:56:58Z <p><a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">"Working Effectively With Legacy Code"</a> by Micheal Feathers. The definitive guide on applying unit tests to existing code.</p>