Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
  }
}
share|improve this question
3  
Did you tried it? What is the result? – Schaliasos Nov 22 '12 at 14:23
@Schaliasos in vs 2010 it is executed, while in 2012 it is not...was wondering what is the expected behavior. – dotnetnoob Nov 22 '12 at 14:49

3 Answers

Finally is executed always, doesn't matter if u have try/catch/ block, it is executed when any of those are finished

share|improve this answer

I gave it a try and it seems that it is not executed. The test timeouts and fails with the error message:

Test 'TestMethod1' exceeded execution timeout period.

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.

share|improve this answer
I added an new question here if someone could explain me why finally is executed on debugging. – Schaliasos Nov 22 '12 at 14:46

If possible, use the TestCleanUp method in order to do work after the test if it is subject to timeouts.

share|improve this answer
Sorry, not enough reputation to add a comment to Schaliasos's answer. As far as I know, Test Timeouts do not apply during Debugging sessions. – keysharpener Nov 22 '12 at 14:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.