MbUnit Integration Testing Newbie Question - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:45:32Z http://stackoverflow.com/feeds/question/314423 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/314423/mbunit-integration-testing-newbie-question 0 MbUnit Integration Testing Newbie Question DanielPass 2008-11-24T15:11:03Z 2009-01-15T22:17:41Z <p>I've been tasked with integration testing of a large system. Presently, I have a COM dll that I'm testing useing a UI that I created that kicks off a series of unit tests that call into the dll. This works, but I'm wanting to migrate this over to MbUnit. When I start the first test in MbUnit, it seems to hang at "Found 1 tests". I end up having to close the IDE. Could someone please point me in the right direction?</p> <p>Thanks.</p> http://stackoverflow.com/questions/314423/mbunit-integration-testing-newbie-question/339836#339836 0 Answer by thealliedhacker for MbUnit Integration Testing Newbie Question thealliedhacker 2008-12-04T08:00:38Z 2008-12-04T08:00:38Z <p>Try stepping through the code manually with a debugger.</p> http://stackoverflow.com/questions/314423/mbunit-integration-testing-newbie-question/448702#448702 1 Answer by Craigger for MbUnit Integration Testing Newbie Question Craigger 2009-01-15T22:17:41Z 2009-01-15T22:17:41Z <p>This is how we kick off our MBUnit test application (command line):</p> <pre><code>namespace UnitTest { class Program { static void Main(string[] args_) { // run unit test AutoRunner auto = new AutoRunner(); auto.Load(); auto.Run(); HtmlReport report = new HtmlReport(); string fileName; // generate report results fileName = report.Render(auto.Result); // launch results in user's browser System.Diagnostics.Process.Start(fileName); } } } </code></pre>