The test below will fail because in Duration attribute we set duration for one second but inside the test we sleep for 2 seconds.
[Test]
[Duration(1)]
public void DurationFailTest()
{
Thread.Sleep(2000);
}
Next test will succeed because we don’t sleep at all.
[Test]
[Duration(1)]
public void DurationSuccessTest()
{
Thread.Sleep(0);
}
You can use it with RowTest attribute. Row(0) will succeed and Row(2000) will obviously fail.
[RowTest, Duration(1)]
[Row(0)]
[Row(2000)]
public void DurationRowTest(int sleepTime)
{
Thread.Sleep(sleepTime);
}
1 comment:
Hi Vadim
I posted a little more about this topic, you can see it here:
http://www.hpoffice.cl/julian/archive/2007/04/19/More-about-test-duration-in-MbUnit.aspx
Best regards,
Julián
Post a Comment