Can people recommend books and other resources on unit testing? All levels from beginning to advanced techniques.
|
|
|||
|
|
|
This question has already been asked. Look here for results. |
||
|
|
|
|
I reckon the definitive guide is probably xUnit Test Patterns |
||
|
|
|
|
I assume that you're familiar with the xUnit API and that you buy test-driven development. If so, I would recommend.
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). |
||
|
|
|
|
As tools I recommend: Runners
Continuous Integration Tools that combine with runners to have tests run at each commit
On top of these people often use Mocking frameworks and other stuff. I think it's a bit overkill to start with everything... |
||
|
|
|
|
I recommend Kent Beck's book: Test Driven Development: By Example |
||
|
|

