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

I would like to know, is there any way to set up TestNG to handle unexpected exceptions like errors and not like failures?

I tried to throw RuntimeException in my test and it was considered as failure, not like an error. TestNG documentation talks only about success and failure states - http://testng.org/doc/documentation-main.html#success-failure.

I would like to have TestNG behaviour similar to JUnit in first question on address http://www.querycat.com/question/d1c9a200f18e6829cb06dda8eda8ad61

Thanks for your help.

share|improve this question

2 Answers

up vote 1 down vote accepted

Edit: Ignore what I had before. Unfortunately, I'm fairly certain the answer to your question is no, TestNG does not have this feature. The entirety of the TestNG documentation is here, so if a feature isn't listed on that page it probably doesn't exist. Remember that although TestNG is inspired by JUnit, it should not be considered a super-set of JUnit's features. The only thing I can think of if you want your test suite to catastrophically fail on an exception is to make it call System.exit(1).

share|improve this answer
I will live with this. Perhaps I will have a look at the TestNG source code if there is something to simulate JUnit behaviour. – Aries Jan 4 '12 at 13:05
@Aries If you just want this for reporting you could parse the junit XML that testng produces and change errors to failures if the error type was anything other than an AssertionError. – Jordan Bentley Jan 4 '12 at 21:58

You are using the wrong exception. JUnit is distinguishing between success, failure (AssertionException thrown by assertXXX) and error (all other not expected exception).

If you know that a method will throw an exception you can catch it with @Test(expected=MyExpectedException).

share|improve this answer
Perhaps I do not made myself clear. I know how to catch expected exceptions. I want unexpected exceptions to cause test error. But they are causing test failure. – Aries Oct 11 '11 at 10:51

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.