up vote 11 down vote favorite
13
share [g+] share [fb]

I'm interested in adding some tests to my code. I write primarily in C#, but I'm having difficulty finding examples for unit testing that aren't trivial (i.e. unit test a function to capitalize a string). Does anyone know of a good book that explains how to write unit tests for non-trivial examples in c#? I've seen the pragmatic programmer, but that's kind of dated as unit testing has only recently come into vogue and its from 2005. Thanks for any help.

link|improve this question

78% accept rate
1  
Unit testing hasn't really just started over the last few years. Kent Beck and co were talking about it way back in the day, and I'm fairly certain it has its roots in Smalltalk. The only thing that has really changed is we now have better tools and frameworks for unit testing. – Jamie Penney Feb 3 '09 at 23:32
feedback

8 Answers

up vote 7 down vote accepted

How about Test-Driven Development in Microsoft .NET

I read it this year and remember it being basic to intermediate. The first example in the book is the implementation of a stack and all the unit tests that go along with it...

I just broke it out from the bookshelf...from the Foreword:

"...With this book, the pieces missing from my book are included" - Kent Beck

link|improve this answer
feedback

"The Art of Unit Testing" (written by me) is now available. I wrote in it all the things I was missing in the other books.

http://www.ArtOfUnitTesting.com

Roy

link|improve this answer
thanks, I'll take a look – Steve Apr 22 '09 at 1:33
I smell a shameless plug! ;) – Nathan Taylor Sep 14 '09 at 20:21
1  
Shameless plug or not, this combined with Working Effecitvely With Legacy Code pretty much covers everything on a practical level. 2nd best book I've read so far in 2009! (meant in a good way) – FinnNk Nov 1 '09 at 18:36
Roy is one of the best authorities on Unit Testing.. I would strongly recommend his book. – Robotsushi Jun 13 '11 at 18:01
Please don't play video by default. I had 1 million tabs opened and couldn't figure out which one was talking for quite a while. – Egor Pavlikhin Aug 1 '11 at 3:57
feedback

There is Pragmatic Unit Testing in C# with NUnit, the Pragmatic books are usually good. Test Driven Development: By Example is the unit testing book, but its examples are in Java.

Rob Conery's Storefront webcasts contain some decent examples of putting unit tests together.

link|improve this answer
feedback

Test-Driven-Development book by Kent Beck is the best I have read so far. Besides this, specific to C#, you might want to try Art-Unit-Testing-Examples-NET book from Roy Osherove. I think he writes well about unit testing with C# in mind.

link|improve this answer
2  
Consider changing your 'this' links to book titles. It will make this answer thread a lot more friendly to external searches and what not. :) – Nathan Taylor Sep 14 '09 at 20:19
I agree the 'this' links are annoying. I want to know what 'this' is before I click through to it. Especially given that hovering over the links just gives a stackoverflow redirect url. – User Jun 10 '11 at 17:33
feedback

I thought this one was decent for teaching the mechanics of using NUnit and creating/using unit tests:

Pragmatic Unit Testing in C# with NUnit

But it's not really about Test Driven Development per se.

I liked this book for explaining how to use unit tests in your day-to-day stuff:

Working Effecitvely With Legacy Code

Although it is more about getting a handle on legacy code, it also spends a lot of time discussing TDD and how to get existing code into a test harness. (It's also not specifically about C#)

link|improve this answer
feedback

This isn't a direct answer to your question, but if the code you are testing is non-trivial, then you may have a problem with the design. Unit tests should test a very small amount of code. If it is hard to test, it may need to be broken into smaller pieces that are easy to test.

link|improve this answer
The functions are small, however they reference more complicated objects. Its testing things that depend on the state of other objects that I find confusing – Steve Feb 5 '09 at 3:12
You might look into mocking the complicated objects. Then you can test the methods separately from the objects and it is easier to manage the state. You should also search for TDD on stackoverflow, it has lots of resources to get you started. – NotDan Feb 5 '09 at 15:26
feedback

Best book I've read is not 100% complete yet but it is available for free online. It provides a great overview of mock unit testing philosophy and also gives practical advice on how to implement these theories. Give this a try. It's no fast answer to your question but may open your eyes.

http://www.mockobjects.com/book/

link|improve this answer
link is no more valid – 0lukasz0 Jan 9 at 12:33
feedback

For a start, read Kent Beck "Test-Driven Development By Example" chapter with tdd-way implementation of a stack.

And next, I would recommend roy osherove ndc09 videos about unit testing. Very very good material and everything you need to know about tdd and unit testing on one place.

Cheers

p.s. you can find ndc videos on twitter just search for #ndc09

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.