|
MbUnit : ManualTester
This page last changed on Jul 12, 2005 by jflowers.
Summary Describes how you can setup Manual Tests in MbUnit. When you have given up and have no other choice, you can always count on the prehistorical "manual tests".
Manual testing is straighforward in MbUnit using the ManualTester helper class. This class contains methods that will show a dialog to the tester that diplays steps to take. The dialog also lets the tester adding comments. The rest is handled by MbUnit. using System; using MbUnit.Core.Framework; using MbUnit.Framework; [TestFixture] public class ManualFixture { [Test] public void DoSomething() { ManualTester.DisplayForm( "Do this", "Do that", "You should see this", "..." ); } }
|
| Document generated by Confluence on Jun 11, 2007 11:56 |