How can use jUnit4.5 idiomatically to test that come code throws an exception?

While I can certainly do something like this:

@Test
public void testFooThrowsIndexOutOfBoundsException() {
  boolean thrown = false;

  try {
    foo.doStuff();
  } catch (IndexOutOfBoundsException e) {
    thrown = true;
  }

  assertTrue(thrown);
}

I recall that there is an annotation or an Assert.xyz or something that is far less cludgy and far more in-the-spirit of jUnit for these sorts of situations.

link|improve this question

feedback

6 Answers

up vote 57 down vote accepted

JUnit 4 has support for this:

@Test(expected=IndexOutOfBoundsException.class)
public void testIndexOutOfBoundsException() {
    ArrayList emptyList = new ArrayList();
    Object o = emptyList.get(0);
}
link|improve this answer
5  
I discovered that this test doesn't fail if you get no exception. So the expected is more like an possible assumption and not a mandatory one. So in this case, your test declare that there might be thrown an IndexOutOfBoundsException, and not that the test should thrown such exception. – raisercostin Dec 10 '09 at 14:48
2  
I discovered that that what i described before happened because the test wasn't marked with this annotation <code>@RunWith(value=BlockJUnit4ClassRunner.class)</code> – raisercostin Dec 10 '09 at 15:08
This piece of code will not work if you expect an exception only somewhere in your code, and not a blanket like this one. – Chin Boon Jun 27 '11 at 14:50
@skaffman This wouldn't work with org.junit.experimental.theories.Theory runned by org.junit.experimental.theories.Theories – Artem Oboturov Apr 27 at 16:01
feedback

If you can use JUnit 4.7, you can use the ExpectedException Rule

@RunWith(JUnit4.class)
public class FooTest {
  @Rule
  public ExpectedException exception = ExpectedException.none();

  @Test
  public void doStuffThrowsIndexOutOfBoundsException() {
    Foo foo = new Foo();

    exception.expect(IndexOutOfBoundsException.class);
    foo.doStuff();
  }
}

This is much better than @Test(expected=IndexOutOfBoundsException.class) because the test will fail if IndexOutOfBoundsException is thrown before foo.doStuff()

See this article for details

link|improve this answer
5  
+1 a better solution than the accepted answer. – Chin Boon Jun 27 '11 at 14:51
It's not always better, since it gets applied to every test in that class. Using @Test(expected=...) is specific to that one method. Each approach is better in different situations. – skaffman May 4 at 16:52
feedback

Be careful using expected exception, because it only asserts that the method threw that exception, not a particular line of code in the test.

I tend to use this for testing parameter validation, because such methods are usually very simple, but more complex tests might better be served with:

try {
    methodThatShouldThrow();
    fail( "My method didn't throw when I expected it to" );
} catch (MyException expectedException) {
}

Apply judgement.

link|improve this answer
3  
Maybe I'm old school but I still prefer this. It also gives me a place to test the exception itself: sometimes I have exceptions with getters for certain values, or I might simply look for a particular value in the message (e.g. looking for "xyz" in the message "unrecognized code 'xyz'"). – Rodney Gitzel Oct 6 '10 at 17:22
I think NamshubWriter's approach gives you the best of both worlds. – Eddie Mar 9 '11 at 19:21
+1 useful in some scenarios where expected = xx doesn't match requirements. – Chin Boon Jun 27 '11 at 15:20
feedback

To solve the same problem I did set up a small project: http://code.google.com/p/catch-exception/

Using this little helper you would write

verifyException(foo, IndexOutOfBoundsException.class).doStuff();

This is less verbose than the ExpectedException rule of JUnit 4.7. In comparison to the solution provided by skaffman, you can specify in which line of code you expect the exception. I hope this helps.

link|improve this answer
feedback

How about this: Catch a very general exception, make sure it makes it out of the catch block, then assert that the class of the exception is what you expect it to be. This assert will fail if a) the exception is of the wrong type (eg. if you got a Null Pointer instead) and b) the exception wasn't ever thrown.

public void testFooThrowsIndexOutOfBoundsException() {
  Throwable e = null;

  try {
    foo.doStuff();
  } catch (Throwable ex) {
    e = ex;
  }

  assertTrue(ex instanceof IndexOutOfBoundsException);
}
link|improve this answer
1  
That's what you do in JUnit 3. Junit 4 does it better. – skaffman Oct 1 '08 at 7:24
feedback

JUnit has built-in support for this, with an "expected" attribute

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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