I am using MbUnit to automate some long-running tests (it takes a few hours to run the fixture, including restoring various databases) and am trying to find a way to run the tests automatically and be able to monitor the progress of the tests.
Of course, I can use the MbUnit GUI and see the lights becoming red or green. I had thought to start off by running the tests from the command line, and using Console.Write to output some results (and capture that somehow) but that output doesn't appear in the console window (it's captured and put in the report). I can probably hook in some sort of logging to a file or database, or even a simple message queue, but am just wondering if there are any particularly good solutions to this. Thanks, Marc
