What is 'the' definitive book on Unit Testing? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T05:12:08Zhttp://stackoverflow.com/feeds/question/413665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/413665/what-is-the-definitive-book-on-unit-testing8What is 'the' definitive book on Unit Testing?steve_c2009-01-05T16:26:29Z2009-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#4136702Answer by tvanfosson for What is 'the' definitive book on Unit Testing?tvanfosson2009-01-05T16:28:16Z2009-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#4136799Answer by Bill the Lizard for What is 'the' definitive book on Unit Testing?Bill the Lizard2009-01-05T16:31:50Z2009-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#4136852Answer by Garry Shutler for What is 'the' definitive book on Unit Testing?Garry Shutler2009-01-05T16:32:54Z2009-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#4136910Answer by Stephen Doyle for What is 'the' definitive book on Unit Testing?Stephen Doyle2009-01-05T16:34:41Z2009-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#4142987Answer by philippe for What is 'the' definitive book on Unit Testing?philippe 2009-01-05T19:56:52Z2009-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#4143722Answer by John Nolan for What is 'the' definitive book on Unit Testing?John Nolan2009-01-05T20:23:26Z2009-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#4145180Answer by joeysim for What is 'the' definitive book on Unit Testing?joeysim2009-01-05T21:03:28Z2009-01-05T21:03:28Z<p>I'd consider investing the time & 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#4145700Answer by Campbell for What is 'the' definitive book on Unit Testing?Campbell2009-01-05T21:19:59Z2009-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#4162473Answer by MrWiggles for What is 'the' definitive book on Unit Testing?MrWiggles2009-01-06T11:56:58Z2009-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>