Learning Unit Testing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T16:43:40Z http://stackoverflow.com/feeds/question/135651 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/135651/learning-unit-testing 11 Learning Unit Testing docgnome 2008-09-25T20:02:13Z 2009-12-07T06:55:58Z <p>So I've put this off for a good long time and I think it's time to stop procrastinating. I need to learn how to do unit testing, but I don't know where to start! Does anyone have any good, preferably online, resources on the subject?</p> <p><hr /></p> <p><strong>Exact Duplicate:</strong> <a href="http://stackoverflow.com/questions/107541/what-is-your-single-favorite-book-or-online-resource-for-getting-started-with-uni">What is your single favorite book or online resource for getting started with unit testing?</a><br /> <strong>Exact Duplicate:</strong> <a href="http://stackoverflow.com/questions/111743/can-people-recommend-some-good-books-and-resources-on-unit-testing">Can people recommend some good books and resources on unit testing?</a><br /> .. and others</p> http://stackoverflow.com/questions/135651/learning-unit-testing/135675#135675 2 Answer by VVS for Learning Unit Testing VVS 2008-09-25T20:05:34Z 2008-09-26T07:08:58Z <p><a href="http://www.masukomi.org/talks/unit_testing_talk_2/index.xul?data=slide_data.txt#page1" rel="nofollow">http://www.masukomi.org/talks/unit_testing_talk_2/index.xul?data=slide_data.txt#page1</a></p> <p>Best presentation on unit testing I ever found.</p> <p><strong>EDIT</strong>: Only works in browsers using the Gecko-Engine (Firefox, SeaMonkey, ...) and is 11 MB large.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/135677#135677 2 Answer by Lou Franco for Learning Unit Testing Lou Franco 2008-09-25T20:05:57Z 2008-09-25T20:05:57Z <p><a href="http://xunitpatterns.com/" rel="nofollow">http://xunitpatterns.com/</a></p> http://stackoverflow.com/questions/135651/learning-unit-testing/135694#135694 4 Answer by RS Conley for Learning Unit Testing RS Conley 2008-09-25T20:07:54Z 2008-09-25T20:07:54Z <p>Refactoring by Martin Fowler is a good place to start.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring: Improving the Design of Existing Code</a></p> <p>Along with reading the documentation for nUnit.</p> <p><a href="http://www.nunit.org" rel="nofollow">www.nunit.org</a></p> <p>Refactoring is really helpful because it places unit testing in context. Namely it use in conjunction with Refactoring. Refactoring is making a series of small testable changes to your code to change its design. Something that is done a lot when maintaining an existing piece of software.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/135704#135704 5 Answer by Jim for Learning Unit Testing Jim 2008-09-25T20:09:11Z 2008-09-25T20:09:11Z <p>I like the <a href="http://googletesting.blogspot.com/" rel="nofollow">Google Testing Blog</a>. They have information on testing python and java, but the principles apply to unit testing in general. Some topics are more advanced, but many are useful for beginners.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/135727#135727 1 Answer by Nathan Feger for Learning Unit Testing Nathan Feger 2008-09-25T20:11:44Z 2008-09-25T20:11:44Z <p>I read a book called Test Driven Development which walks you through a project developed in a test driven manner. </p> <p>It's really about trying to attain a new mindset: Only write a line of production code, when it is written to get a test working.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/135784#135784 1 Answer by Harald Scheirich for Learning Unit Testing Harald Scheirich 2008-09-25T20:20:57Z 2008-09-25T20:20:57Z <p>Just do it, pick a framework in the language that you work with, or don't even pick a framework, write your own little test objects. Try and test every functionality that you produce, try testing first, unit testing is more of a mind set and a practice than sticking to somebodies rules. Any test you write is better than none. </p> <p>Any framework that you pick will have an introduction to unit testing the Wikipedia entry <a href="http://en.wikipedia.org/wiki/Test-driven_development" rel="nofollow">Test Driven Development</a> is a good start as any. </p> http://stackoverflow.com/questions/135651/learning-unit-testing/135797#135797 0 Answer by skaffman for Learning Unit Testing skaffman 2008-09-25T20:24:39Z 2008-09-25T20:24:39Z <p>As wel as reading books and the like, I strongly suggest picking an open-source product known to have very good unit tests for itself, and use them as a good-practise guide. For example, Spring's test coverage is second-to-none, and they're excellent examples of how to (a) write tests, and (b) write components to be more conducive to being tested effectively.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/135807#135807 0 Answer by Slapout for Learning Unit Testing Slapout 2008-09-25T20:25:31Z 2008-09-25T20:25:31Z <p>Craig Shoemaker did <a href="http://polymorphicpodcast.com/shows/practical%2Dunit%2Dtesting/" rel="nofollow">a couple of episodes of the Polymorphic Podcast</a> on Unit Testing. He did it based on Visual Studio 2003, but I was still able to follow along with Visual Studio 2005. </p> http://stackoverflow.com/questions/135651/learning-unit-testing/135819#135819 1 Answer by pfranza for Learning Unit Testing pfranza 2008-09-25T20:26:56Z 2008-09-25T20:26:56Z <p>I actually just wrote about this the other day and I tried to provide some very simple examples to help people get their feet wet. </p> <p><a href="http://www.peterfranza.com/2008/09/23/unit-testing-a-short-primer/" rel="nofollow">http://www.peterfranza.com/2008/09/23/unit-testing-a-short-primer/</a> </p> <p><a href="http://www.peterfranza.com/2008/09/24/unit-testing-user-interfaces/" rel="nofollow">http://www.peterfranza.com/2008/09/24/unit-testing-user-interfaces/</a></p> http://stackoverflow.com/questions/135651/learning-unit-testing/136086#136086 0 Answer by Jennifer for Learning Unit Testing Jennifer 2008-09-25T21:01:03Z 2008-09-25T21:01:03Z <p>Agree with the person who mentioned <a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow" title="Test-driven development">Test Driven Development by Kent Beck</a> - this is the book that probably influenced me most as it goes down to the lowest level concepts of why we want to do it in the first place. I like his writing style too - definitely one to read all the way through.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/144523#144523 0 Answer by Hamish Smith for Learning Unit Testing Hamish Smith 2008-09-27T21:33:45Z 2008-09-27T21:33:45Z <p>I second what @Harald Scheirich said. Reading books and articles is great and there are some good ones listed in this thread. </p> <p>What you really need to do is start writing tests. </p> <p>I'd recommend starting on a new project (see this <a href="http://stackoverflow.com/questions/107919/is-it-feasible-to-introduce-test-driven-development-tdd-in-a-mature-project">question about why it would be hard to introduce into a mature code base</a>). </p> <p>There is another relevant question about <a href="http://stackoverflow.com/questions/24965/beginning-tdd-challenges-solutions-recommendations">advice for starting TDD</a>.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/261401#261401 1 Answer by philippe for Learning Unit Testing philippe 2008-11-04T10:05:32Z 2008-11-04T10:05:32Z <p>I would recommend learning not only unit testing, but also Test-Driven Development (TDD). TDD is a programming technique where the code is written, along with it's design and it's unit tests, at the same time. That way leads to a very good unit test coverage, which permits easy and safe <a href="http://www.refactoring.com/" rel="nofollow">refactoring</a> of your code. Therefore the code produced is flexible, and can be adapted to unforeseen requirements.</p> <p>To get started, I can recommend the <a href="http://www.objectmentor.com/resources/articles/xpepisode.htm" rel="nofollow">bowling game episode</a> which shows two programmers implementing a bowling score computation, step by step, with unit tests and ending with a different design than they initially envisioned. This articles is way shorter than a book but is long enough to demonstrate the technique.</p> <p>Then, to go further, there are Kent Beck's excellent <a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow">Test-Driven Development: by example</a> and Dave Astels <a href="http://rads.stackoverflow.com/amzn/click/0131016490" rel="nofollow">Test-Driven Development: a practical guide</a> (didn't had the chance to read that one yet. Fowler' <a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow">Refactoring</a>, already recommended here leads to the next level. </p> http://stackoverflow.com/questions/135651/learning-unit-testing/261421#261421 2 Answer by Tomas Pajonk for Learning Unit Testing Tomas Pajonk 2008-11-04T10:17:25Z 2008-11-04T10:17:25Z <p>I have started to learn unit testing couple of times. I think that it is one of the harder things to learn in programming without a good tutor. There are so many pitfalls ... It is easy to test a simple class that's what most of the examples in documentations are about. The problem comes with learning how to isolate your classes, not doing integration tests without realizing it and so on. I haven't read the books mentioned above (only looked into some), but the one that I have read and would reccoment is this The Art of Unit Testing. It describes the pitfalls and actually explains a lot about the practice of unit testing.</p> <p><a href="http://artofunittesting.com/" rel="nofollow">http://artofunittesting.com/</a></p> <p>I would argue that since unit testing is a major concept it is extremely usefull to understand it. Reading one article out of context really didn't cut it for me. I thought I understood what I was doing, but later found my tests were rubbish ...</p> <p>I strongly reccomend you to try understand the concept and try it on some really small project before jumping onto creating production code tests. Otherwise you'll throw most of them away ...</p> http://stackoverflow.com/questions/135651/learning-unit-testing/377479#377479 0 Answer by Ola Eldøy for Learning Unit Testing Ola Eldøy 2008-12-18T10:33:11Z 2008-12-18T10:33:11Z <p>There are other (and many similar) suggestions in a <a href="http://stackoverflow.com/questions/107541/what-is-your-single-favorite-book-or-online-resource-for-getting-started-with-u">related question</a>.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/377492#377492 0 Answer by Erik Öjebo for Learning Unit Testing Erik Öjebo 2008-12-18T10:42:25Z 2008-12-18T10:42:25Z <p>I would recommend looking at screencasts, to get a feel for how TDD is applied. At <a href="http://www.dnrtv.com/" rel="nofollow">Dnr TV</a> there are two episodes with JP Boodhoo, where he gives an introduction to test driven development:</p> <ul> <li><a href="http://www.dnrtv.com/default.aspx?showNum=10" rel="nofollow">Test Driven Development with JP Boodhoo, Part 1</a></li> <li><a href="http://www.dnrtv.com/default.aspx?showNum=11" rel="nofollow">Test Driven Development with JP Boodhoo, Part 2</a></li> </ul> <p>If you want to see unit testing and TDD used together with a whole bunch of other agile practices, I would recommend watching the sceencast series <a href="http://autumnofagile.net/" rel="nofollow">Autumn of Agile</a>. This series shows the development of a fully unit tested application from start to finish.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/377505#377505 0 Answer by John D. Cook for Learning Unit Testing John D. Cook 2008-12-18T10:51:36Z 2008-12-18T10:51:36Z <p>Here's a good one-page <a href="http://media.pragprog.com/titles/utj/StandaloneSummary.pdf" rel="nofollow">summary</a> of unit testing from Pragmatic Programmers. It's an appendix from their book <a href="http://www.pragprog.com/titles/utc2/pragmatic-unit-testing-in-c-with-nunit" rel="nofollow">Pragmatic Unit Testing</a>. The book comes in a C# edition and a Java edition. That book is short and easy to read. I'd recommend you start with something like that before reading something more advanced like Fowler's refactoring book.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/378924#378924 0 Answer by orip for Learning Unit Testing orip 2008-12-18T19:27:26Z 2008-12-18T19:27:26Z <p><a href="http://www.pragprog.com/starter_kit" rel="nofollow">Pragmatic Unit Testing</a> from the PragProg Starter Kit is a great introduction.</p> http://stackoverflow.com/questions/135651/learning-unit-testing/463266#463266 2 Answer by Johan for Learning Unit Testing Johan 2009-01-20T21:45:17Z 2009-12-07T06:55:58Z <p>The funny thing is that I just recently did what you are asking for, learned how unit test work...</p> <p>What my conclusion was, is that you basically have 2 programs, the normal program and the test program. The test program calls the normal functions, and tries to decide if the response are correct! And then you save the test program so that you can verify your test from time to time.</p> <p>It turned out that I have been doing nearly this for quite some time, but not like that and definitely not with any framework...</p> <p>Before when I wrote a new function, I always called it a couple of times with different inputs and watch what happened. Most of the time something was wrong so I would fix that and then run the test input again.... and so on, and so on until I was happy with this function. The problem was that when I was "done" I would clean up the function that was calling the new function, and move on!!!</p> <p>This is where unit test is different, here you are supposed to save all those test calls so you can repeat them later if you need. And since they are in another program, your main program is clean from any "test code".</p> <p>Then you pick up a framework to help you do this, but as philippe told me in <a href="http://stackoverflow.com/questions/453141/basic-unit-test-and-c-how-do-i-get-started">this question</a>, even 4 lines of c code can be called a unit test framework, just have a look at <a href="http://pantras.free.fr/articles/minunit.html" rel="nofollow">minunit</a>.</p> <p>Hope this could help you in some way.</p>