vote up 5 vote down star
5

I was wondering if there's a way (even a manual one) to setup an ASP.NET MVC project with unit tests under Visual Web Developer Express 2008 SP1.

flag

3 Answers

vote up 0 vote down

For a while I've been using a solution described here. It works like a charm with Visual Web Developer :D Actually it works exactly like the full version of VisualStudio!

It gives you immediate access to NUnit Framework in your unit test project along with NUnit Mocks (I know it's not the best one but it comes with NUnit anyways so there's no point in denying its existence).

link|flag
vote up 10 vote down check

ASP.NET MVC 1.0 (Release version) comes bundled with templates for Visual Web Developer Express 2008. Not sure if SP1 is required or not, though.

link|flag
You should mark this as the answer. :) – Haacked Dec 31 '08 at 23:33
vote up 0 vote down

Visual Web Developer does not support C# test projects, which essentially a ASP.NET MVC test project is. However you can test your application with Visual C# Express referencing the assembly containing the models and controllers.

link|flag
Actually you are right. The only difference is that solutions in VWD might contain more than one project - it just needs to be "enabled" (well,.. sort of). And that work is being done by Visual C# Express when adding a new Class Library project to it :D – Matthias Hryniszak Dec 30 '08 at 20:08

Your Answer

Get an OpenID
or

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