NUnit and Visual Web Developer 2008SP1 - Integration problems - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T09:36:36Zhttp://stackoverflow.com/feeds/question/253116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/253116/nunit-and-visual-web-developer-2008sp1-integration-problems0NUnit and Visual Web Developer 2008SP1 - Integration problemsYarin Miran2008-10-31T10:42:10Z2008-11-27T13:33:05Z
<p>Hey all,</p>
<p>I've decided to integrate NUnit with VWD2008.</p>
<p>I did the following-
1) Installed NUnit - Ran a Sample project that was included with the installation all the tests were fine.
2) Installed TestDriven.Net 2.0 - Personal distribution.
3) I have written on an MVC Project a test and when I try to right click the context and run the Test it fails.
In addition I had to add reference the NUnit.framework dll in order to write the tests.</p>
<p>What have I done wrong?</p>
http://stackoverflow.com/questions/253116/nunit-and-visual-web-developer-2008sp1-integration-problems/253425#2534251Answer by Mendelt for NUnit and Visual Web Developer 2008SP1 - Integration problemsMendelt2008-10-31T13:19:33Z2008-10-31T13:19:33Z<p>Testdriven.Net doesn't work with the express editions of visual studio. Previous versions of Testdriven.Net did work with the Visual Studio Express editions but Microsoft didn't like that and put their lawyers on it.
<a href="http://weblogs.asp.net/nunitaddin/archive/2007/07/06/microsoft-amp-testdriven-net.aspx" rel="nofollow">http://weblogs.asp.net/nunitaddin/archive/2007/07/06/microsoft-amp-testdriven-net.aspx</a></p>
<p>You could try sharpdevelop if you want a free ide with unit-testing support.</p>
http://stackoverflow.com/questions/253116/nunit-and-visual-web-developer-2008sp1-integration-problems/253924#2539241Answer by Nick DeVore for NUnit and Visual Web Developer 2008SP1 - Integration problemsNick DeVore2008-10-31T15:34:06Z2008-10-31T15:34:06Z<p>Like Mendelt said, TestDriven.Net doesn't work with the express editions. I've got VS2008 Standard Edition so I had to use the "long way" of using NUnit. You have the NUnit GUI open and load your dlls. Then you attach to that process from the Debug menu in VS2008 and run your code.</p>
<p>All that being said, I'm not sure if it is the same for MVC or not. I know in the few blogs I've read, there have all been examples of mocking for MVC. Perhaps something you should look into.</p>