vote up 5 vote down star

Does MSTest have standalone GUI similar to nUnit that lets me use it and run test without visual studio? What is the official site for MSTest where I can learn more about how to use it?

flag

52% accept rate

5 Answers

vote up 5 vote down check

It doesn't have a GUI (apart from Visual Studio) but there's a command line tool: MSTest.exe

Here is the official documentation on running MSTest tests.

link|flag
Actually it is possible. This is exactly what I did for our CI server. I have described the process here - shunra.com/shunrablog/index.php/…. – mark Jul 15 at 8:29
vote up 0 vote down

Hi!

You can also use this tool from codeplex: http://testrunner.codeplex.com...

link|flag
vote up 1 vote down

Use Gallio as your test runner... then its not so much of a drama when you enventually drop MsTest and move to a real test framework.

link|flag
vote up 2 vote down

Hi. I describe here how to run mstest without VS - http://www.shunra.com/shunrablog/index.php/2009/04/running-mstest-without-visual-studio/

link|flag
vote up 5 vote down

You can do this with mstest.exe, but the trick is in getting it to work without installing visual studio. This involves the copying of several files and registry entries. I have blogged about it here.

link|flag
1  
Nice trick ... the complexity of the process is an argument to write tests in NUnit :) – Precipitous Jun 30 at 22:27

Your Answer

Get an OpenID
or

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