6

I want to start working with TDD but I don't know really where to start. We coding with .NET (C#/ASP.NET).

Maxime Rouiller
  • 13,614
  • 9
  • 57
  • 107

4 Answers4

3

See the questions Why should I practice Test Driven Development and how should I start?, Moving existing code to Test Driven Development, What is unit testing? and What is TDD?

Community
  • 1
  • 1
Anthony
  • 5,176
  • 6
  • 65
  • 87
  • In addition to the above, read up on Uncle Bob and use TDD KATA as a means to test out the practiciality of TDD development. Don't try at work at first do some practice at home first on some little app or KATA and master the craft before trying to use it in a professional environment. – Fellmeister Mar 01 '17 at 03:22
1

I would start by reading up on TDD and why it's a good practice. As you read that, try to think about how the concepts apply to your own projects.

When I was learning TDD, it seemed simple at first, but it's such a paradigm shift that it forced me to change the way I thought about how my program would work. And I guess that's kind of the point. :)

Robert S.
  • 25,266
  • 14
  • 84
  • 116
1

There is also lots of good information on the Google Testing Blog

Daryl
  • 1,023
  • 1
  • 8
  • 9
1

There's a good book called Test Driven Development in Microsoft .NET that you might check out. It is essentially the same as the classic Test Driven Development by Example, but with the Microsoft platform in mind.

Sergio Acosta
  • 11,418
  • 12
  • 62
  • 91