MbUnit Integration Testing Newbie Question - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:45:32Zhttp://stackoverflow.com/feeds/question/314423http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314423/mbunit-integration-testing-newbie-question0MbUnit Integration Testing Newbie QuestionDanielPass2008-11-24T15:11:03Z2009-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#3398360Answer by thealliedhacker for MbUnit Integration Testing Newbie Questionthealliedhacker2008-12-04T08:00:38Z2008-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#4487021Answer by Craigger for MbUnit Integration Testing Newbie QuestionCraigger2009-01-15T22:17:41Z2009-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>