views:

238

answers:

3

There are enough books on how to do unit testing.

Do you know any good books (or other good resources) on integration testing?

What I am particularly interested in is

  • Define scope (unit testing < integration testing < automated func. testing
  • What is a good and bad integration test
  • Data access
  • Service layers
  • Configuration
  • Spring or other DI containers for integration testing
  • ...

?

A: 

I like "Test Driven Development: By Example" (Amazon link).

Kent Beck is a good writer and obviously knows what he is talking about.

Gunnar Steinn
@Gunnar Steinn: this looks like a TDD (unit testing) book to me?
badbadboy
+2  A: 

Continous Integration By Duvall, Matyas and Glover It's a Martin Fowler's signature book published by Addison-Wesley It might give you some nice ideas.

Julien Grenier
@Julien Grenier: Looking through the contents, haven't found much on integration testing TECHNIQUES...
badbadboy
A: 

Actually there is another thread on this which is pretty good: http://stackoverflow.com/questions/555899/the-agile-way-integration-testing-vs-functional-testing-or-both

khebbie