ASP.Net MVC and nUnit - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:08:06Zhttp://stackoverflow.com/feeds/question/21137http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit18ASP.Net MVC and nUnitPeter Meyer2008-08-21T20:43:29Z2009-04-23T19:13:26Z
<ul>
<li>I have nUnit installed.</li>
<li>I have VS2008 Team Edition installed.</li>
<li>I have ASP.Net MVC Preview 4 (Codeplex) installed.</li>
</ul>
<p>How do I make Visual Studio show me nUnit as a testing framework when creating a new MVC project? At this point I still only have the Microsoft Testing Framework as a choice. </p>
<p><strong>Update:</strong> I installed nUnit 2.5, but still with no success. From what I've found Googling, it would seem I need to <em>create</em> templates for the test projects in order for them to be displayed in the "Create Unit Test Project". I would have thought that templates be readily available for nUnit, xUnit, MBUnit, et. al. Also, it looks like I need to created registry entries. Anybody have any additional information?</p>
<p><strong>Update:</strong> I determined the answer to this through research and it's posted below. </p>
http://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit/21143#211430Answer by Jon Limjap for ASP.Net MVC and nUnitJon Limjap2008-08-21T20:46:00Z2008-08-21T20:46:00Z<p>Do install <a href="http://testdriven.net" rel="nofollow">Testdriven.net</a> to integrate NUnit with Visual Studio. MbUnit and later versions of NUnit also contain project templates for unit tests.</p>
<p>You can use those project templates to create a test project and then reference to your ASP.NET MVC project and be able to test its code.</p>
http://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit/21618#216182Answer by Dale Ragan for ASP.Net MVC and nUnitDale Ragan2008-08-22T01:52:41Z2008-08-22T02:59:51Z<p>@Peter Meyer - What version of nUnit did you install? The nUnit 2.5 Alpha 3 release contains the VS 2008 project templates needed to get nUnit as an option in the Create Unit Test Project dialog that shows up after choosing the ASP.NET MVC Application template.</p>
<p>@Jon Limjap - When creating a ASP.NET MVC application, it gives you an option to create a unit test project at the same time. Please check this <a href="http://haacked.com/images/haacked_com/WindowsLiveWriter/ASP.NETMVCUpdate_C69C/UnitTestingFrameworks_3.png" rel="nofollow">link</a> out to see a screen shot of the dialog that is presented to you after choosing the ASP.NET MVC Web Application and clicking OK. This is what Peter is asking about.</p>
http://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit/21701#217010Answer by Peter Meyer for ASP.Net MVC and nUnitPeter Meyer2008-08-22T03:14:59Z2008-08-22T15:21:46Z<p>@Dale - Yes, that's exactly what I'm talking about. I installed 2.4.8 -- I will give the alpha version a shot.</p>
<p><strong>Update</strong>: Version 2.5 Aplha 3 of nUnit does <strong>not</strong> seem to contain test project templates either.</p>
http://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit/23481#2348112Answer by Peter Meyer for ASP.Net MVC and nUnitPeter Meyer2008-08-22T21:02:27Z2008-08-22T21:02:27Z<p>After a bunch of research and experimentation, I've found the answer. </p>
<ul>
<li>For the record, the current release of nUnit 2.5 Alpha <em>does not</em> seem to contain templates for test projects in Visual Studio 2008. </li>
<li>I followed the directions <a href="http://vishaljoshi.blogspot.com/2008/02/aspnet-mvc-test-framework-integration.html" rel="nofollow">here</a> which describe how to create your own project templates and then add appropriate registry entries that allow your templates to appear in the drop-down box in the <em>Create Unit Test Project</em> dialog box of an MVC project.</li>
</ul>
<p>From a high level, what you have to do is:</p>
<ol>
<li>Create a project</li>
<li>Export it as a template (which results in a single ZIP archive)</li>
<li>Copy it from the local user's template folder to the Visual Studio main template test folder</li>
<li>Execute <strong>devenv.exe /setup</strong></li>
<li>Run <strong>regedit</strong> and create a few registry entries. </li>
</ol>
<p>So much for the testing framework selection being easy! Although, to be fair MVC is not even beta yet. </p>
<p>After all that, I did get the framework of choice (NUnit) to show up in the drop down box. However, there was still a bit left to be desired:</p>
<ul>
<li>Although the test project gets properly created, it did not automatically have a project reference to the main MVC project. When using <em>Visual Studio Unit Test</em> as the test project, it automatically does this.</li>
<li>I tried to open the ZIP file produced and edit the MyTemplate.vssettings file as well as the .csproj project file in order to correct the aforementioned issue as well as tweak the names of things so they'd appear more user friendly. This for some reason does not work. The ZIP file produced can not be updated via WinZip or Win-Rar -- each indicates the archive is corrupt. Each can extract the contents, though. So, I tried updating the extracted files and then recreating the ZIP file. Visual Studio did not like it.</li>
</ul>
<p>So, I should probably read <a href="http://msdn2.microsoft.com/en-us/library/s365byhx.aspx" rel="nofollow">this</a> as well which discusses making project templates for Visual Studio (also referenced in the blog post I linked to above.) I admit to being disappointed though; from all the talk about MVC playing well with other testing frameworks, etc, I thought that it'd be easier to register a 3rd party framework.</p>
http://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit/23762#237621Answer by Dale Ragan for ASP.Net MVC and nUnitDale Ragan2008-08-22T23:57:06Z2008-08-22T23:57:06Z<p>Man, they have VS 2008 project template listed in their <a href="http://nunit.com/index.php?p=releaseNotes&r=2.5" rel="nofollow">release notes</a>. I guess that doesn't mean they have it integrated with the dialog yet.</p>
<p>I use <a href="http://www.mbunit.com/" rel="nofollow">MbUnit</a> with <a href="http://www.gallio.org/" rel="nofollow">Gallio</a> and everything worked like a charm. I had to install an Alpha of Gallio and MbUnit and when I read the above in the release notes, I figured they implemented it also.</p>
<p>Just keep a look out on nUnit's site for future alpha releases. I am sure they'll have it implemented soon. You could also implement the feature yourself and submit a patch. :-)</p>
http://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit/23796#237960Answer by Peter Meyer for ASP.Net MVC and nUnitPeter Meyer2008-08-23T00:34:45Z2008-08-23T00:34:45Z<p>@Dale - I tried MbUnit with Gallio, and it did indeed work like a charm. Yeah, I read the same release notes as you -- a couple times over because I figured I must be missing something! :-P Anyway, good point -- I could submit a patch. I was thinking along those lines. I am going to try to get the templates working tonight, so maybe I will do just that. The ZIP archive thing is real strange -- according to <a href="http://msdn2.microsoft.com/en-us/library/s365byhx.aspx" rel="nofollow">MS documentation for Visual Studio templates</a>, they specify to do a right click and <em>send to compressed folder ...</em> -- i.e. their compression. So maybe their stuff is a bit different. I'll post any updates here. Thanks for all your insight. </p>
http://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit/783141#7831411Answer by smaclell for ASP.Net MVC and nUnitsmaclell2009-04-23T19:13:26Z2009-04-23T19:13:26Z<p>Although they do not have one bundled with the framework here is a link to post containing a download to automatically create the test project for "NUnit with moq" for you <a href="http://johnnycoder.com/blog/2009/04/01/aspnet-mvc-test-template-project-for-nunit-and-moq/" rel="nofollow">NUnit with Moq</a></p>
<p>(did not work right away on my computer, W7 Beta, make sure you use elevated permissions)</p>