Hi
Is there a way in MBUnit to have the same test called multiple times with different parameters in a sequence, as such:
Method1() Method2(param A) Method3() Method2(ParamB) Method4() Method2(ParamC)
etc? I've tried using the Order parameter but sadly I was too hopeful in that the Ordering would be considered class-wide rather than test-wide (1,2,3,4,5,6 as opposed to 1,2a,2b,2c,3,4).