Reviews
Books and other
http://www.amazon.com/Test-Driven-Development-Microsoft-NET-Professional/dp/0735619484
The title says it all, this is
a book about TDD in .NET Development. I advise you to read this book and Test Driven Development: By Example (Addison-Wesley Signature
Series) by Kent Beck. Souce code snippets are in C# and the
reference is .NET Development Framework v.1.1.This book is a great reference for
TDD in .NET Development and there are a lot of examples, all examples are
tested with NUnit.
It begins with a simple
example about Stack class. Here the authors illustrate the 2 rules of TDD clearly in details:
1.Never write a single
line of code unless you have a failing automated test
2.Eliminate duplication
The authors talk...