gangelo
gangelo

Reputation: 3182

Frameworks being used with ASP.NET MVC 3 for TDD?

What are the most popular frameworks being used with ASP.NET MVC 3 for TDD? What are you using? Why'd you choose one over the other?

I've worked with Pex/Moles, I've heard of NUnit what else is out there? What else is being used?

Upvotes: 1

Views: 412

Answers (3)

the_joric
the_joric

Reputation: 12226

I recommend to use xUnit + Nsubstitute + FluentAssertions. Combination of those provides very clean and expressive syntax.

Upvotes: 1

Alexander Zeitler
Alexander Zeitler

Reputation: 13089

I'm using Machine.Fakes on top of MSpec because of its simple usage. It is has support for Resharper test runner and is supported by NCrunch.

Update: In addition there's also machine.specifications.mvc built on top of MSpec.

Upvotes: 0

gdoron
gdoron

Reputation: 150253

Strongly recommend the MvcConribg TestHelper which is open source and can be found on nuget

Upvotes: 0

Related Questions