Exactly as the question says :

How can I MSTEST with Visual Studio 11 Dev Preview ?

I tried to find the mstest.exe but it doesnt exist in its usual location :

C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE

I wrote some unit tests and there is no way to run them =\

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

MSTest has never been part of the Express editions of Visual Studio.

link|improve this answer
feedback

MSTest.exe is present on my PC in the specified location.

OTOH, if you just started writing the tests, you may want to look at xUnit.net, some of the reasons being posted here: Why I'm migrating from MSTest to xUnit.net.

For VS11 there is a runner available as an extension: Prototype xUnit.net Visual Studio 11 Unit Testing Plugin

link|improve this answer
feedback

Like @Darin Dimitrov answered, MSTest is not available in Express edition, and you should install the Ultimate edition from here,

http://msdn.microsoft.com/en-US/vstudio/hh127353

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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