views:

67

answers:

3

I'm working through the Nerd Dinner ASP.NET MVC tutorial and am at the part right after I've created the project and am trying to run my unit tests for the first time. I see the test project and the AccountControllerTest.cs and HomeControllerTest.cs files that were generated but when I click on Test -> Run all options are greyed out. When I try the keyboard shortcut for tests I get a message that that key combination is bound to command (RunTestsInCurrentContext) which is not currently available. I'm running VS 2008 Development Edition.

+1  A: 

Do you have the Express Edition? IF so the tests are not supported

SQLMenace
+1  A: 

Dont think they are available in VS 2008 Development Edition, you need Professional Edition

Look at Code Quality Tools section in the pdf on this link - Visual Studio 2008 Product Comparison Guide

Paul Rowland
A: 

I have the standard edition and built in tests are not supported so I use Nunit. http://nunit.com/index.php

mark123