How to use MsTest in Continous Integration without VS ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:58:45Z http://stackoverflow.com/feeds/question/954943 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/954943/how-to-use-mstest-in-continous-integration-without-vs 3 How to use MsTest in Continous Integration without VS ? LoKtO 2009-06-05T09:06:31Z 2009-07-27T15:34:58Z <p>I my problem is quite simple, i have a CI server wich run msbuild and mstest.</p> <p>The problem is that the Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll doesn't exist( and i thinks other file related to mstest...) if we don't install VS in the server wich is pretty stupid for a CI server... </p> <p>Anybody have a solution about this problem ?</p> http://stackoverflow.com/questions/954943/how-to-use-mstest-in-continous-integration-without-vs/954979#954979 3 Answer by Ruben Bartelink for How to use MsTest in Continous Integration without VS ? Ruben Bartelink 2009-06-05T09:17:22Z 2009-07-27T15:34:58Z <p>Unfortunately, there is no supported or easy way around having to install VS on the build agent machine in 2005 or 2008 (<a href="http://blogs.msdn.com/jimlamb/archive/2008/11/03/integrating-dependencies-into-team-build-2010.aspx" rel="nofollow">There will be a test agent installer in 2010</a>). UPDATE: <a href="http://aspadvice.com/blogs/ssmith/archive/2008/03/18/Continuous-Integration-Setup-with-MSTest.aspx" rel="nofollow">See this post from Steve Smith for more info which says pretty much the same thing</a></p> <p>It's not just a matter of the assemblies being missing - if you want to run the tests, the runner is not just a separate little EXE and a DLL.</p> <p>Yes, hard to believe! Needless to say, very few other test frameworks on the planet have this restriction, so unless you have a lot of tests, you could consider moving, for a variety of reasons which are covered in many places, example: <a href="http://joeydotnet.com/blog/archive/2006/12/25/15.aspx" rel="nofollow">The fundamental problems and impracticality of using MSTest</a>...</p> <p>EDIT: Prompted by Rihan's reply, I binged up the following <a href="http://www.shunra.com/shunrablog/index.php/2009/04/running-mstest-without-visual-studio/" rel="nofollow">Running mstest without Visual Studio.</a> - It's not fully supported, but it 'works'...</p> <p>EDIT 2: <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=5&amp;url=http%3A%2F%2Fwww.delarou.net%2Fweblog%2FPermaLink%2Cguid%2C05d6228c-365d-4279-b66c-cc027dfdba89.aspx&amp;ei=kuYoSpnjDYarjAf4k7TqCg&amp;usg=AFQjCNHp3cfTUTszrnyjA%5Fcsd%5FUYfpJAPg&amp;sig2=wVBD-drUG4icBDTqYgN1fA" rel="nofollow">Running MSTest without Visual Studio - Gallio to the rescue</a> looks a lot more promising in terms of being supported and non-hacky</p> <p>EDIT 3: Added info re 2010 status on this question</p> <p>NOTE: I have a similar question for 2008 regarding what's requried to support the /publish parameter of mstest:- <a href="http://stackoverflow.com/questions/1062994/running-mstest-exe-publish-on-a-teambuild-server-what-are-the-prerequisites">http://stackoverflow.com/questions/1062994/running-mstest-exe-publish-on-a-teambuild-server-what-are-the-prerequisites</a></p> http://stackoverflow.com/questions/954943/how-to-use-mstest-in-continous-integration-without-vs/955021#955021 0 Answer by Rihan Meij for How to use MsTest in Continous Integration without VS ? Rihan Meij 2009-06-05T09:31:35Z 2009-06-05T09:31:35Z <p>Hi</p> <p>We have Cruise Control setup on our integration server. I have not installed visual studio, however I have copyied the MSTEST assemblies into the GAC. We then used <a href="http://confluence.public.thoughtworks.org/display/CCNET/Using%2BCruiseControl.NET%2Bwith%2BMSTest" rel="nofollow">Cruise Control Documentation</a> to setup our test reports. Works very well.</p> <p>Best Regards Rihan</p>