vote up 7 vote down star
6

Short backstory: I am a self-taught developer. This can lend to all manner of bad habits and misconceptions, but I am constantly learning and want to improve my skills. Insofar as I want to be a developer, I want to be a good developer. With that in mind...

Unit testing is a mystery to me. I don't know what it is, how to do it, and so on. I would just google for this stuff, but I think this could be a good resource to have on SO. So, what is a good, comprehensive, detailed introduction to unit testing?

Edit: In case it matters, I mostly write Javascript and PHP.

flag

What language are you using? – jop Oct 15 '08 at 17:14
PHP and Javascript primarily. – eyelidlessness Oct 15 '08 at 17:26

4 Answers

vote up 5 vote down check

Pragmatic Unit Testing is a good reference. There's a C# and Java version of the book. I has lots of tips on what to test and how to test it. Have a look at the summary card to get an idea on what the book is all about.

alt text

link|flag
I had actually never heard of this one. I have the Pragmatic Programmer and love it. I also have just about every other book on software testing, so I guess I need this one to complete my collection. :) – Bill the Lizard Oct 15 '08 at 20:19
Me either. I think I may have to get the credit card out. – BlackWasp Oct 15 '08 at 22:21
I really like this book as an introduction to Unit Testing. – Mark Bessey Oct 15 '08 at 22:48
vote up 4 vote down

This may be of interest.

“The Art of Unit Testing“. by Roy Osherove

The book concentrates on unit testing for the .Net developer. And it covers these subjects (as taken from the manning website).

  • Introduction to unit testing and the basics of writing real-world unit tests with NUnit
  • Best practices for writing maintainable, trustworthy, readable tests
  • Mock Objects and integration testing in-depth
  • Reference chapters for NUnit, Rhino.Mocks, and TypeMock.NET
  • Database unit testing
  • Testing legacy code
  • Designing for testability

From: http://blogs.lessthandot.com/index.php/Architect/IntroductionArchitectureDesign/an-interview-with-roy-osherove-autor-of-

link|flag
vote up 3 vote down

Test-Driven Development by Example by Kent Beck, one of the developers of JUnit, has everything you need to know about unit testing. The first section of the book goes through several examples using Java and JUnit, showing you how to properly unit test a project. The second part uses Python to show you how to build a unit testing framework. It's worth a look.

link|flag
vote up 1 vote down

You might want to give a look at the bowling game episode. The article is not very long, and can be read quite quickly. However the language used is Java, but the code is simple.

The discussion illustrates not only unit testing, but also pair-programming and emergent design.

Shorter than a book, this format gives you a good grasp on writing unit tests with Test-Driven-Development (TDD).

link|flag

Your Answer

Get an OpenID
or

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