Newbie question:
I need to use the ProcessTestFixture attribute for my testing;
however, with TestDriven.Net I can only execute individual tests.
(right clicking within a method and clicking 'RunTest(s)' executes
only 1 test and right clicking outside of the method and selecting
'Run Test(s)' executes no tests).
Any guidance would be greatly appreciated.
My project has these references:
MbUnit.Framework v2.4.2.130
MbUnit.Framework2 v2.4.2.130
Gallio v3.0.0.179
using MbUnit.Framework;
using MbUnit.Core;
using System.Transactions;
namespace UnitTests
{
[ProcessTestFixture]
public class NetworkTests
{
[Test]
[TestSequence(1)]
public void Test1()
{
Assert.AreEqual( 1+1, 2);
}
[Test]
[TestSequence(2)]
public void Test2()
{
Assert.AreEqual( 1+1, 2);
}
[Test]
[TestSequence(3)]
public void Test3()
{
Assert.AreEqual( 1+1, 2);
}
}
}
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---