Use the [Repeat] attribute or make the fixture data-driven.

1. [Repeat]

[Repeat(4)]
public class Fixture
{
    [Test]
    public void Test() { }
}

2. Data-driven

public class Fixture
{
    [Row(1)]
    [Row(2)]
    [Row(3)]
    public int Parameter1;

    [Test]
    public void Test() { }
}

Jeff.

On Tue, Mar 16, 2010 at 5:27 AM, nibs <[email protected]> wrote:

> hi,
>
> I want to repeat my entire test fixture after a  succesfull execution,
> i.e  i want to verify bunch of functionalities/ entireTest fixture
> with help of different environment variables.
>
> Thanks
> Nibs
>
> --
> 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.

Reply via email to