vote up 3 vote down star

Can people recommend books and other resources on unit testing? All levels from beginning to advanced techniques.

flag

80% accept rate
a language to aim for would be a good tag – Florian Bösch Sep 21 '08 at 19:01

5 Answers

vote up 3 vote down check

This question has already been asked. Look here for results.

link|flag
vote up 2 vote down

I reckon the definitive guide is probably xUnit Test Patterns

link|flag
vote up 1 vote down

I assume that you're familiar with the xUnit API and that you buy test-driven development. If so, I would recommend.

JUnit Recipes

Because it gets down to the brass tacks of how you would test difficult parts of a J2EE stack. (And the concepts still apply even if you're not using J2EE).

link|flag
vote up 1 vote down

As tools I recommend:

Runners

  • NUnit
  • MBUnit
  • jUnit

Continuous Integration

Tools that combine with runners to have tests run at each commit

  • CruiseControl
  • CruiseControl.NET

On top of these people often use Mocking frameworks and other stuff. I think it's a bit overkill to start with everything...

link|flag
vote up 1 vote down

I recommend Kent Beck's book: Test Driven Development: By Example

link|flag

Your Answer

Get an OpenID
or

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