Using Post-Build Event To Execute Unit Tests With MS Test in .NET 2.0+ - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T23:13:42Zhttp://stackoverflow.com/feeds/question/507757http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/507757/using-post-build-event-to-execute-unit-tests-with-ms-test-in-net-2-02Using Post-Build Event To Execute Unit Tests With MS Test in .NET 2.0+Toran Billups2009-02-03T16:09:39Z2009-02-03T16:26:15Z
<p>I'm trying to setup a post-build event in .NET 3.5 that will run a suite of unit tests w/ MS test. I found <a href="http://www.highoncoding.com/Articles/398_Using%20Post-Build%20Event%20to%20Execute%20Unit%20Tests.aspx" rel="nofollow">this</a> post that shows how to call a bat file using MbUnit but I'm wanting to see if anyone has done this type of thing w/ MS Test?</p>
<p>If so, I would be interested in a sample of what the bat file would look like</p>
http://stackoverflow.com/questions/507757/using-post-build-event-to-execute-unit-tests-with-ms-test-in-net-2-0/507771#5077712Answer by Anton Gogolev for Using Post-Build Event To Execute Unit Tests With MS Test in .NET 2.0+Anton Gogolev2009-02-03T16:11:59Z2009-02-03T16:11:59Z<p>Personally I would not recomment running unit tests as a part of the compilation process. Instead, consider something like ReSharper (+ appropriate Unit Test Runner or how do they call these nowadays) or some other GUI runner.</p>
http://stackoverflow.com/questions/507757/using-post-build-event-to-execute-unit-tests-with-ms-test-in-net-2-0/507828#5078281Answer by Mark for Using Post-Build Event To Execute Unit Tests With MS Test in .NET 2.0+Mark2009-02-03T16:26:15Z2009-02-03T16:26:15Z<p>Instead of a doing it in a post build event, that will happen every time you compile, I would look at setting up a Continuous Integration Server like <a href="http://confluence.public.thoughtworks.org/display/CCNET/Welcome+to+CruiseControl.NET" rel="nofollow">CruiseControl.Net</a>. It'll provide you a tight feedback cycle, but not block your work with running tests every time you build your application. </p>
<p>If you are wanting to run the set of tests you are currently developing, Anton's suggestion of using <a href="http://www.jetbrains.com/resharper/index.html" rel="nofollow">ReSharper</a> will work great. You can create a subset of tests to execute when you wish and it's smart enough to compile for you if it needs to. While you're there picking up the demo, if you don't already have a license, pick up <a href="http://www.jetbrains.com/teamcity/index.html" rel="nofollow">Team City</a>. It is another CI server that has some promise. </p>
<p>If you are wanting to use this method to control the build quality, you'll probably find that as the number of tests grow, you no longer want to wait for 1000 tests to run each time you press F5 to test a change.</p>