Learning Unit Testing - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T16:43:40Zhttp://stackoverflow.com/feeds/question/135651http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/135651/learning-unit-testing11Learning Unit Testingdocgnome2008-09-25T20:02:13Z2009-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#1356752Answer by VVS for Learning Unit TestingVVS2008-09-25T20:05:34Z2008-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#1356772Answer by Lou Franco for Learning Unit TestingLou Franco2008-09-25T20:05:57Z2008-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#1356944Answer by RS Conley for Learning Unit TestingRS Conley2008-09-25T20:07:54Z2008-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#1357045Answer by Jim for Learning Unit TestingJim2008-09-25T20:09:11Z2008-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#1357271Answer by Nathan Feger for Learning Unit TestingNathan Feger2008-09-25T20:11:44Z2008-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#1357841Answer by Harald Scheirich for Learning Unit TestingHarald Scheirich2008-09-25T20:20:57Z2008-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#1357970Answer by skaffman for Learning Unit Testingskaffman2008-09-25T20:24:39Z2008-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#1358070Answer by Slapout for Learning Unit TestingSlapout2008-09-25T20:25:31Z2008-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#1358191Answer by pfranza for Learning Unit Testingpfranza2008-09-25T20:26:56Z2008-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#1360860Answer by Jennifer for Learning Unit TestingJennifer2008-09-25T21:01:03Z2008-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#1445230Answer by Hamish Smith for Learning Unit TestingHamish Smith2008-09-27T21:33:45Z2008-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#2614011Answer by philippe for Learning Unit Testingphilippe 2008-11-04T10:05:32Z2008-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#2614212Answer by Tomas Pajonk for Learning Unit TestingTomas Pajonk2008-11-04T10:17:25Z2008-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#3774790Answer by Ola Eldøy for Learning Unit TestingOla Eldøy2008-12-18T10:33:11Z2008-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#3774920Answer by Erik Öjebo for Learning Unit TestingErik Öjebo2008-12-18T10:42:25Z2008-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#3775050Answer by John D. Cook for Learning Unit TestingJohn D. Cook2008-12-18T10:51:36Z2008-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#3789240Answer by orip for Learning Unit Testingorip2008-12-18T19:27:26Z2008-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#4632662Answer by Johan for Learning Unit TestingJohan2009-01-20T21:45:17Z2009-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>