Hi Rob,
 
Just to check on a few things (and to borrow from Jay's example).
 
When you right click and run td.net so that it runs all tests you need to make sure you click inside of the namespace
 
using System;
using MbUnit.Core.Framework;
using MbUnit.Framework;

namespace HelloWorldTest
{
     [TestFixture]
     public class MyFirstTest
     {
         [Test]
         public void Success()
         {
             Console.WriteLine("HelloWorld");
         }
         [Test]
         public void Failure()
         {
             throw new Exception("boom" );
         }
     }
}
 
so here you would postion the cursor ijust above [TestFixture]
 
Apologies if you are already doing this and its something else but just to make sure your not :)
 
Thanks
 
Andy Stopford
 
On 5/17/06, Rob Cecil <[EMAIL PROTECTED]> wrote:

Hello,

I'm running

VS2005
mbUnit Version 1.0.2265.31914
TD.NET 2.0.1605 (Personal)

When I right click on a method, I can run that test method with the
testrunner.
When I try to right-click a Class or File (in solution explorer) my
test methods never run. I just get a short "0 Passes 0 Failures 0
Skipped". I cannot determine why it will not let me run more than one
test method at a time.

Also, when I do run a single test, I get a very brief output in the
Output window. Example:

1 passed, 0 failed, 0 skipped, took 5.53 seconds.

How do I get the output seen here:

http://www.mertner.com/confluence/display/MbUnit/TestExecutionUsingTestDriven

Thanks for your help in advance

Rob






--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "MbUnit.User" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/MbUnitUser
-~----------~----~----~----~------~----~------~--~---

Reply via email to