views:

788

answers:

2

What are the good resource to learn BDD & TDD (ruby , C#, javascript).

What are the good framework using now?

+2  A: 

I can't really speak with too much authority on this subject, nor will I speak with too greater vigour given how storongly people feel about those two acronyms but it seams as though you are new to BDD / TDD so I will tell you what I wish someonehad told me when I first encoubtered them.

Tests and tools are one component of the overall process and methodology behind TDD, it is arguably one of the more visible aspects and so it is likely that you will see a lot of references to testing being an importabt part of TDD, and it is, I'm just saying, if you are interested in learning about TDD, don't forget the other aspects of it as well.

Resources I have found helpful:

  • The Pragmatic Programmer: doesn't really talk about TDD per se, but it does emphisise a lot of other good practices that will help you.

Hanselminutes Episode 169

Tools I find helpful

  • TestDriven.NET - test runner in visual studio
  • xUnit.NET - Test Framework
  • Rhino Mocks - Isolation (mocking) framework
Crippledsmurf