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

I have a test with the following setup:

[Test]
[Parallelizable]
[Row("BE"]
[Row("NL"]
public void test(string locale)
{
 try
 {
   do something
 }
 finally
 {
   here I want to do something if the test fails
 }

}

I've tried it with triggerEvent.TestFailed and several other options, but it always return passed, even if a rowTest fails..

Any help would be appriciated

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.