views:

270

answers:

4

I'm looking for an example of an open-source project that was engineered using Test Driven Development (TDD) in C# on the .NET Framework. Does anyone know of one?

A: 

Mono - http://mono-project.com/ got thousands of unit tests, can be useful to you.

dr. evil
+3  A: 

If you are interested in web development in ASP.NET MVC (C#) check KIGG Project and Kona Project

Marwan Aouida
+3  A: 

Just doing Unit tests not means you are doing TDD. TDD is writing test before the solution.

This seems to be responding to one of the comments on the question. I could vote it up as a comment, but it doesn't answer the question at all.
tvanfosson
+1  A: 

I wrote AutoFixture using TDD (as I do with all my code).

Mark Seemann