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

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.

share|improve this question
The problem with any other approach but this is that they invariably end the test once the exception has been thrown. I, on the other hand, often still want to call org.mockito.Mockito.verify with various parameters to make sure that certain things happened (such that a logger service was called with the correct parameters) before the exception was thrown. – ZeroOne Jan 17 at 11:05

8 Answers

up vote 147 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);
}
share|improve this answer
3  
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
1  
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 '12 at 16:01
@skaffman: Is there a way to do similar thing in junit 3.8, expect method to throw exception? – Rachel Jun 8 '12 at 18:48
I don't use that annotation and don't have that problem... – bacar Jul 6 '12 at 10:32
show 2 more comments

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

share|improve this answer
13  
+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 '12 at 16:52
5  
@skaffman - If I've understood this correctly, it looks like the exception.expect is being applied only within one test, not the whole class. – bacar Jul 6 '12 at 11:41

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.

share|improve this answer
6  
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
Using ExpectedException you could call N exception.expect per method to test like this exception.expect(IndexOutOfBoundsException.class); foo.doStuff1(); exception.expect(IndexOutOfBoundsException.class); foo.doStuff2(); exception.expect(IndexOutOfBoundsException.class); foo.doStuff3(); – user1154664 Oct 9 '12 at 17:07
This is classic thank you. I dont like all the countless annotations coming with each new version of the framework. – Denis Feb 6 at 9:31
show 1 more comment

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.

share|improve this answer

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);
}
share|improve this answer
1  
That's what you do in JUnit 3. Junit 4 does it better. – skaffman Oct 1 '08 at 7:24
Also, you won't see what kind of Exception ex is in the test results when the day comes where the test fails. – jontejj Mar 14 at 16:13

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

share|improve this answer

I tried many of the methods here, but they were either complicated or didn't quite meet my requirements. In fact, one can write a helper method quite simply:

public class ExceptionAssertions {
    public static void assertException(BlastContainer blastContainer ) {
        boolean caughtException = false;
        try {
            blastContainer.test();
        } catch( Exception e ) {
            caughtException = true;
        }
        if( !caughtException ) {
            throw new AssertionFailedError("exception expected to be thrown, but was not");
        }
    }
    public static interface BlastContainer {
        public void test() throws Exception;
    }
}

Use it like this:

assertException(new BlastContainer() {
    @Override
    public void test() throws Exception {
        doSomethingThatShouldExceptHere();
    }
});

Zero dependencies: no need for mockito, no need powermock; and works just fine with final classes.

share|improve this answer

You can also do this:

@Test
public void testFooThrowsIndexOutOfBoundsException()
    {
    try
        {
        foo.doStuff();
        assert false;
        }
    catch (IndexOutOfBoundsException e)
        {
        assert true;
        }
    }
share|improve this answer

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.