Technologies: VS, mbunit, watin, and gallio.

The Problem:  when i use rowtests to run the same test multiple times
with different parameters, when i compile and run this in gallio it
repeats the tests.

So for example, when i try to run the code below in Gallio test runner
it will have 4 test in the report (both rows twice).

If I tried adding three row tests, it will run all three rowtests 3
times.  4 rows = 4 row tests 4 times, etc.

Does anybody have any ideas or is there something simple that I'm
missing?

Thank you.

[TestFixture(ApartmentState = System.Threading.ApartmentState.STA,
TimeOut = 300)]
public class MyClass
{
        [SetUp]
        public void CreateBrowser()
        {
        }

        [TearDown]
        public void DisposeBrowser()
        {
        }

        [RowTest]
        [Row(10)]
        [Row(1)]
        public void MyTest(int iParam)
        {
        }
}

-- 
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.

Reply via email to