Try putting the timeout on the DataFixture itself.
[DataFixture(TimeOut = 60)]
[XmlDataProvider(@"C:\BTTester\testcase.xml", "testcase/ testList")]
public class Program
{
[ForEachTest("item")]
public void ForEachTest(XmlNode node)
{
}
}
-----Original Message-----
From: [email protected] [mailto:[EMAIL PROTECTED] On
Behalf Of gforot
Sent: Thursday, September 25, 2008 7:17 AM
To: MbUnit.User
Subject: MbUnit MbUnit.Core.Exceptions.FixtureTimedOutException
HI all,
I'm new in MBUnit using.
I need to do some test to methods that take more then 15 minutes to run.
The problem is that after 601 seconds, a
MbUnit.Core.Exceptions.FixtureTimedOutException is raised.
I have setted the Timeout Property in my testFixture to 60 minutes but
nothing change.
[DataFixture]
[XmlDataProvider(@"C:\BTTester\testcase.xml", "testcase/ testList")]
[TestFixture(TimeOut = 60)]
public class Program
{
[ForEachTest("item")]
public void ForEachTest(XmlNode node)
{
}
}
Can someone help me?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---