Hi
I noticed that my test fixture always times out after 10 minutes. As
I'm
aware of, this is by design, but according to the documentation it
should be
possible to set a different timeout by using the
TestFixture(TimeOut=...)
attribute.
However, it seems that setting this attribute has no effect. What I
must add
is that I use it with a dynamically created test suite, as shown in the
code
below:
[TestSuiteFixture]
[TestFixture(TimeOut = 30)]
public class MyFixture
{
[TestSuite]
public TestSuite Suite()
{
TestSuite suite = new TestSuite("Suite");
...
return suite;
}
...
}
Does anyone know how to specify the timeout correctly?
Regards,
Alex