up vote 2 down vote favorite
share [g+] share [fb]

I've seen mspec used with nunit on some blogs and discussions. In fact, most of the examples on the web that I've seen demonstrate mspec with some kind of nunit dependancy or integration. My team is attempting to use mspec without nunit on a new ASP.NET MVC2 project. We're not at the spec-writing stage yet, so I can't tell what is better. What it your experience with this? Are there benefits to using mspec with nunit? Without?

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

MSpec does not depend in any way on NUnit or xUnit. As such you can use MSpec on its own, as it has it's own runners and assertion methods. The blog posts you saw very likely used the "old" assertion library that were dependent on either NUnit or xUnit. This dependency has been removed in late 2009.

What you can do, although it's neither required nor do I see any benefit in doing it, is to use NUnit's assertion library (Assert.IsTrue et al.) together with MSpec.

link|improve this answer
feedback

since you not have started yet, take a look at SpecFlow, it integrates nicely with MSTest and Visual Studio....

link|improve this answer
MSpec has integration with Visual Studio through ReSharper or TestDriven.NET. – Alexander Groß Apr 6 '10 at 18:37
-1 because it answers a different question than the one asked – Tim Long Jun 15 '11 at 17:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.