Can anyone tell if finally is always executed after a test times out or not.
[Timeout(1000)][TestMethod]
public void test()
{
try
{
System.Threading.Thread.Sleep(2000);
}
finally
{
//do something
}
}
|
Can anyone tell if finally is always executed after a test times out or not.
|
|||||||
|
|
Finally is executed always, doesn't matter if u have try/catch/ block, it is executed when any of those are finished |
|||
|
|
|
I gave it a try and it seems that it is not executed. The test timeouts and fails with the error message:
The finally block was not executed. However, it is executed on Debugging. Could anyone explain me this. I'd really like to know why is that happening. |
|||
|
|
If possible, use the TestCleanUp method in order to do work after the test if it is subject to timeouts. |
|||
|