This seems kind of suspicious. I think the tests are running once per row but there may be a bug in the code that is presenting the test results. Which test runner are you using to run your tests (Icarus, TDNet, Visual Studio, ReSharper, Echo, PowerShell, MSBuild, NAnt)? Also, which version?
Jeff. On Wed, Mar 3, 2010 at 10:33 AM, Joshua <[email protected]> wrote: > 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]<mbunituser%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/mbunituser?hl=en. > > -- 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.
